For tiny gui, reverse previous change about different tile_size,
since images are scaled at install time (maybe warn about this in the configure option ?)
This commit is contained in:
parent
b4407617e5
commit
d9e477d0ed
1 changed files with 4 additions and 0 deletions
|
@ -31,7 +31,11 @@
|
|||
/// - unmasked: images are scaled, but have no time of day masking applied to them
|
||||
/// - brightened: images are scaled and brighter than normal.
|
||||
namespace image {
|
||||
#ifdef USE_TINY_GUI
|
||||
const int tile_size = 36;
|
||||
#else
|
||||
const int tile_size = 72;
|
||||
#endif
|
||||
|
||||
template<typename T>
|
||||
struct cache_item {
|
||||
|
|
Loading…
Add table
Reference in a new issue