diff options
author | Eugene Sandulenko | 2016-04-10 12:52:53 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-04-10 13:02:27 +0200 |
commit | 777e6fde393a4fc36642cd1c937b6978084b7542 (patch) | |
tree | f9daf2d0b8f7343bd75ba3b5e8cb77df8640dcaf /gui/options.h | |
parent | 260cd967967e179f85e36db2ab6facb85709441c (diff) | |
download | scummvm-rg350-777e6fde393a4fc36642cd1c937b6978084b7542.tar.gz scummvm-rg350-777e6fde393a4fc36642cd1c937b6978084b7542.tar.bz2 scummvm-rg350-777e6fde393a4fc36642cd1c937b6978084b7542.zip |
ALL: Split SMALL_SCREEN_DEVICE into GUI_ENABLE_KEYSDIALOG and GUI_ONLY_FULLSCREEN
Diffstat (limited to 'gui/options.h')
-rw-r--r-- | gui/options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/options.h b/gui/options.h index 6f4046381d..294b41794b 100644 --- a/gui/options.h +++ b/gui/options.h @@ -29,7 +29,7 @@ #include "common/str.h" #include "audio/mididrv.h" -#ifdef SMALL_SCREEN_DEVICE +#ifdef GUI_ENABLE_KEYSDIALOG #include "gui/KeysDialog.h" #endif @@ -210,7 +210,7 @@ public: virtual void reflowLayout(); protected: -#ifdef SMALL_SCREEN_DEVICE +#ifdef GUI_ENABLE_KEYSDIALOG KeysDialog *_keysDialog; #endif #ifdef USE_FLUIDSYNTH |