aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/alan2/acode.h
diff options
context:
space:
mode:
authorPaul Gilbert2019-06-22 09:02:06 -0700
committerPaul Gilbert2019-06-22 14:40:50 -0700
commit1249c335392d7cc2d5492a5bc8718b9a034fbb11 (patch)
treebd1475e7304db33f04c3914c8e49c2bd299f6faa /engines/glk/alan2/acode.h
parent2cf0320569c80c8e389e44d1b0463792ddf8e7cd (diff)
downloadscummvm-rg350-1249c335392d7cc2d5492a5bc8718b9a034fbb11.tar.gz
scummvm-rg350-1249c335392d7cc2d5492a5bc8718b9a034fbb11.tar.bz2
scummvm-rg350-1249c335392d7cc2d5492a5bc8718b9a034fbb11.zip
GLK: ALAN2: Change all EOF to EOD that is case to uint
Diffstat (limited to 'engines/glk/alan2/acode.h')
-rw-r--r--engines/glk/alan2/acode.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/engines/glk/alan2/acode.h b/engines/glk/alan2/acode.h
index dcc292b16b..74f0e541e4 100644
--- a/engines/glk/alan2/acode.h
+++ b/engines/glk/alan2/acode.h
@@ -72,11 +72,8 @@ typedef int WrdKind;
/* Syntax element classifications */
-// End of file
-#ifdef EOF
-#undef EOF
-#endif
-#define EOF ((uint32)-1)
+// End of data
+#define EOD ((uint32)-1)
// End of syntax
#define EOS ((uint32)-2)