aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/alan2/alan2.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-06-22 10:33:37 -0700
committerPaul Gilbert2019-06-22 14:40:50 -0700
commitd4075b188d9834c9901639f517aebf38ee584ee0 (patch)
treef98e241b5e992ca0208192a2b8b1cb7ca31c4199 /engines/glk/alan2/alan2.cpp
parent8b509bbfee6d9c82d8f05e569f61f5781917cbda (diff)
downloadscummvm-rg350-d4075b188d9834c9901639f517aebf38ee584ee0.tar.gz
scummvm-rg350-d4075b188d9834c9901639f517aebf38ee584ee0.tar.bz2
scummvm-rg350-d4075b188d9834c9901639f517aebf38ee584ee0.zip
GLK: ALAN2: Further gcc warning fixes
Diffstat (limited to 'engines/glk/alan2/alan2.cpp')
-rw-r--r--engines/glk/alan2/alan2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/alan2/alan2.cpp b/engines/glk/alan2/alan2.cpp
index 5953f834f0..1ae5ddad35 100644
--- a/engines/glk/alan2/alan2.cpp
+++ b/engines/glk/alan2/alan2.cpp
@@ -145,7 +145,7 @@ void Alan2::synchronizeSave(Common::Serializer &s) {
}
// Sync scores
- for (i = 0; (int)scores[i] != EOD; i++)
+ for (i = 0; scores[i] != EOD; i++)
syncVal(s, &scores[i]);
}