Fix bug in preprocessor conditionals in preferences.hpp

This commit is contained in:
Piotr Cychowski 2008-02-14 10:02:38 +00:00
parent 80b586fad9
commit 24fb2ebbc6

View file

@ -33,7 +33,7 @@ class display;
#ifdef USE_TINY_GUI
const int min_allowed_width = 320;
const int min_allowed_height = 240;
#elif define(USE_SMALL_GUI)
#elif defined USE_SMALL_GUI
const int min_allowed_width = 800;
const int min_allowed_height = 480;
#else