diff options
author | Paul Gilbert | 2019-11-17 11:12:47 -0800 |
---|---|---|
committer | Paul Gilbert | 2019-11-17 14:06:14 -0800 |
commit | 9ab74a04569e5f29100c1cda16b68d6150c5b230 (patch) | |
tree | 1facd7873b5dc3a425fc24d2b68a2f806f745c7b | |
parent | 7341fedb1387e9ec4ef08a22bbf7e7ba0632b173 (diff) | |
download | scummvm-rg350-9ab74a04569e5f29100c1cda16b68d6150c5b230.tar.gz scummvm-rg350-9ab74a04569e5f29100c1cda16b68d6150c5b230.tar.bz2 scummvm-rg350-9ab74a04569e5f29100c1cda16b68d6150c5b230.zip |
GLK: ADVSYS: Cleanup
-rw-r--r-- | engines/glk/advsys/advsys.h | 2 | ||||
-rw-r--r-- | engines/glk/advsys/detection_tables.h | 2 | ||||
-rw-r--r-- | engines/glk/advsys/game.cpp | 1 |
3 files changed, 2 insertions, 3 deletions
diff --git a/engines/glk/advsys/advsys.h b/engines/glk/advsys/advsys.h index 8b7b7fb56b..a741f4e78f 100644 --- a/engines/glk/advsys/advsys.h +++ b/engines/glk/advsys/advsys.h @@ -20,6 +20,8 @@ * */ +/* Based on AdvSys interpreter 1.2 */ + #ifndef GLK_ADVSYS_ADVSYS #define GLK_ADVSYS_ADVSYS diff --git a/engines/glk/advsys/detection_tables.h b/engines/glk/advsys/detection_tables.h index 561f8bd3ca..0f042348ec 100644 --- a/engines/glk/advsys/detection_tables.h +++ b/engines/glk/advsys/detection_tables.h @@ -21,8 +21,6 @@ */ #include "engines/game.h" -#include "common/gui_options.h" -#include "common/language.h" namespace Glk { namespace AdvSys { diff --git a/engines/glk/advsys/game.cpp b/engines/glk/advsys/game.cpp index 76aa4959ae..4f9ea9ef1b 100644 --- a/engines/glk/advsys/game.cpp +++ b/engines/glk/advsys/game.cpp @@ -385,6 +385,5 @@ void Game::readMsgBlock() { ce->_data[idx] = (ce->_data[idx] + 30) & 0xff; } - } // End of namespace AdvSys } // End of namespace Glk |