diff options
Diffstat (limited to 'engines/cge/startup.h')
-rw-r--r-- | engines/cge/startup.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/engines/cge/startup.h b/engines/cge/startup.h index a1e44cc4af..96c7388070 100644 --- a/engines/cge/startup.h +++ b/engines/cge/startup.h @@ -59,20 +59,20 @@ namespace CGE { #define CORE_LOW (CORE_MID - 20) -class STARTUP { - static bool get_parms(void); +class Startup { + static bool getParms(); public: - static int Mode; - static int Core; - static int SoundOk; - static uint16 Summa; - STARTUP(void); + static int _mode; + static int _core; + static int _soundOk; + static uint16 _summa; + Startup(); }; -extern EMM MiniEmm; +extern EMM _miniEmm; -const char *UsrPath(const char *nam); +const char *usrPath(const char *nam); } // End of namespace CGE |