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:
Ali El Gariani 2007-04-04 18:56:32 +00:00
parent b4407617e5
commit d9e477d0ed

View file

@ -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 {