diff options
| author | Jonathan Gray | 2004-08-27 01:32:10 +0000 |
|---|---|---|
| committer | Jonathan Gray | 2004-08-27 01:32:10 +0000 |
| commit | d1d308ff743c85fd91d45bf8a2e2a7f9507b6ced (patch) | |
| tree | 1fa6c1da747d77e3041a52484e318fa18cef15b5 /saga/interface.cpp | |
| parent | c89bfad61dc7c1c260540e173df198d1fe9f8dc4 (diff) | |
| download | scummvm-rg350-d1d308ff743c85fd91d45bf8a2e2a7f9507b6ced.tar.gz scummvm-rg350-d1d308ff743c85fd91d45bf8a2e2a7f9507b6ced.tar.bz2 scummvm-rg350-d1d308ff743c85fd91d45bf8a2e2a7f9507b6ced.zip | |
R_GAMETYPE -> GID, remove unused supported flag and trim some unused bits of GAME
svn-id: r14793
Diffstat (limited to 'saga/interface.cpp')
| -rw-r--r-- | saga/interface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/saga/interface.cpp b/saga/interface.cpp index f16dd19e50..ab438458d0 100644 --- a/saga/interface.cpp +++ b/saga/interface.cpp @@ -156,13 +156,13 @@ Interface::Interface(SagaEngine *vm) : _vm(vm), _initialized(false) { // Initialize interface data by game type game_type = GAME_GetGameType(); - if (game_type == R_GAMETYPE_ITE) { + if (game_type == GID_ITE) { // Load Inherit the Earth interface desc _cPanel.buttons = ITE_c_buttons; _cPanel.nbuttons = ARRAYSIZE(ITE_c_buttons); _iDesc = ITE_interface; - } else if (game_type == R_GAMETYPE_IHNM) { + } else if (game_type == GID_IHNM) { // Load I Have No Mouth interface desc _cPanel.buttons = IHNM_c_buttons; _cPanel.nbuttons = ARRAYSIZE(IHNM_c_buttons); |
