diff options
author | Paul Gilbert | 2019-11-17 11:39:28 -0800 |
---|---|---|
committer | Paul Gilbert | 2019-11-17 14:06:14 -0800 |
commit | 90e29ab1bb79ed5d31f26602038422ee9849f2ae (patch) | |
tree | 053a64b8fc6d8a685fc2a2c372574bbbd5221073 | |
parent | d9ce28592d0404da1b78fa1e55f4c0433f86a04f (diff) | |
download | scummvm-rg350-90e29ab1bb79ed5d31f26602038422ee9849f2ae.tar.gz scummvm-rg350-90e29ab1bb79ed5d31f26602038422ee9849f2ae.tar.bz2 scummvm-rg350-90e29ab1bb79ed5d31f26602038422ee9849f2ae.zip |
GLK: ALAN3: Cleanup
-rw-r--r-- | engines/glk/alan3/alan3.cpp | 1 | ||||
-rw-r--r-- | engines/glk/alan3/alan3.h | 2 | ||||
-rw-r--r-- | engines/glk/alan3/checkentry.cpp | 1 |
3 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/alan3/alan3.cpp b/engines/glk/alan3/alan3.cpp index 33ccf75c20..7185e02d5d 100644 --- a/engines/glk/alan3/alan3.cpp +++ b/engines/glk/alan3/alan3.cpp @@ -47,7 +47,6 @@ Alan3::Alan3(OSystem *syst, const GlkGameDescription &gameDesc) : GlkIO(syst, ga // main codfil = nullptr; textFile = nullptr; -// logfil = nullptr; memory = nullptr; // exe diff --git a/engines/glk/alan3/alan3.h b/engines/glk/alan3/alan3.h index 9b830c910b..cdaecde594 100644 --- a/engines/glk/alan3/alan3.h +++ b/engines/glk/alan3/alan3.h @@ -20,6 +20,8 @@ * */ +/* Based on Alan 3 interpreter 3.0beta6 */ + #ifndef GLK_ALAN3 #define GLK_ALAN3 diff --git a/engines/glk/alan3/checkentry.cpp b/engines/glk/alan3/checkentry.cpp index 3977d9e742..990d6920f8 100644 --- a/engines/glk/alan3/checkentry.cpp +++ b/engines/glk/alan3/checkentry.cpp @@ -28,7 +28,6 @@ namespace Glk { namespace Alan3 { -/*======================================================================*/ bool checksFailed(CONTEXT, Aaddr adr, bool execute) { CheckEntry *chk = (CheckEntry *) pointerTo(adr); bool flag; |