diff options
author | Travis Howell | 2005-04-25 03:45:37 +0000 |
---|---|---|
committer | Travis Howell | 2005-04-25 03:45:37 +0000 |
commit | 967fd877b1190c3eded1d42421977eb307079e07 (patch) | |
tree | 091f6ae8aa1ad986c5908ecdb7d302c8f7abb045 | |
parent | 14f56887ea94ebf077c80398bde7814c6211d9f3 (diff) | |
download | scummvm-rg350-967fd877b1190c3eded1d42421977eb307079e07.tar.gz scummvm-rg350-967fd877b1190c3eded1d42421977eb307079e07.tar.bz2 scummvm-rg350-967fd877b1190c3eded1d42421977eb307079e07.zip |
Remove excess ;
svn-id: r17794
-rw-r--r-- | scumm/object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/object.cpp b/scumm/object.cpp index 668a388969..2120f27f63 100644 --- a/scumm/object.cpp +++ b/scumm/object.cpp @@ -1072,7 +1072,7 @@ int ScummEngine::getObjectImageCount(int object) { int objnum; objnum = getObjectIndex(object); - if (objnum == -1); + if (objnum == -1) return 0; ptr = getOBIMFromObject(_objs[objnum]); |