aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/alan3/params.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-06-26 18:36:34 -0700
committerPaul Gilbert2019-07-06 15:27:07 -0700
commit305330bda7e755f141805a4e0e45f74820e980e1 (patch)
treedce4cb9da47a334b5942b582497ea249e7659bda /engines/glk/alan3/params.cpp
parent822cd6f16564a4fbb3436600894c144bf9e160d6 (diff)
downloadscummvm-rg350-305330bda7e755f141805a4e0e45f74820e980e1.tar.gz
scummvm-rg350-305330bda7e755f141805a4e0e45f74820e980e1.tar.bz2
scummvm-rg350-305330bda7e755f141805a4e0e45f74820e980e1.zip
GLK: ALAN3: Change EOF to a uint32 EOD to fix compiler warnings
Diffstat (limited to 'engines/glk/alan3/params.cpp')
-rw-r--r--engines/glk/alan3/params.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/alan3/params.cpp b/engines/glk/alan3/params.cpp
index 4b940099f8..d1d97a7ba7 100644
--- a/engines/glk/alan3/params.cpp
+++ b/engines/glk/alan3/params.cpp
@@ -280,7 +280,7 @@ void copyReferencesToParameterArray(Aint references[], Parameter parameterArray[
for (i = 0; !isEndOfArray(&references[i]); i++) {
parameterArray[i].instance = references[i];
- parameterArray[i].firstWord = EOF; /* Ensure that there is no word that can be used */
+ parameterArray[i].firstWord = EOD; /* Ensure that there is no word that can be used */
}
setEndOfArray(&parameterArray[i]);
}