diff options
author | Max Horn | 2006-09-30 13:34:17 +0000 |
---|---|---|
committer | Max Horn | 2006-09-30 13:34:17 +0000 |
commit | bf6a1cc734b2de04567a907591d8f39d9f70e420 (patch) | |
tree | 6643231c003e0485d74e1aadd5946331fa0d8c93 | |
parent | 119ee3fb8b0f25f0408646c2a96ecb094251ce2e (diff) | |
download | scummvm-rg350-bf6a1cc734b2de04567a907591d8f39d9f70e420.tar.gz scummvm-rg350-bf6a1cc734b2de04567a907591d8f39d9f70e420.tar.bz2 scummvm-rg350-bf6a1cc734b2de04567a907591d8f39d9f70e420.zip |
Fix compiler warning
svn-id: r24042
-rw-r--r-- | engines/agos/rules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agos/rules.cpp b/engines/agos/rules.cpp index c9709ba98c..92d8d847f1 100644 --- a/engines/agos/rules.cpp +++ b/engines/agos/rules.cpp @@ -336,7 +336,7 @@ void AGOSEngine::dropBlock(int a, int b, int c) { void AGOSEngine::gravityCheck() { - int i, j, k; + int i, k; int x, y, z; int flag; int block; |