aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
diff options
context:
space:
mode:
authorJohannes Schickel2012-02-22 20:20:55 +0100
committerJohannes Schickel2012-02-22 20:20:55 +0100
commit442bcb7d3eb64f3fbde3ee5bd2b16e7c01bae469 (patch)
tree1414c9fd07408159d7457dc6ee3818725279d6d0 /engines/gob
parentdac6ac66ad0a5ce0d99e089dacad1d72929d0f42 (diff)
downloadscummvm-rg350-442bcb7d3eb64f3fbde3ee5bd2b16e7c01bae469.tar.gz
scummvm-rg350-442bcb7d3eb64f3fbde3ee5bd2b16e7c01bae469.tar.bz2
scummvm-rg350-442bcb7d3eb64f3fbde3ee5bd2b16e7c01bae469.zip
ALL: Fix some signed/unsigned comparison warnings.
Diffstat (limited to 'engines/gob')
-rw-r--r--engines/gob/hotspots.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/hotspots.cpp b/engines/gob/hotspots.cpp
index 5e0af847de..9a89f11923 100644
--- a/engines/gob/hotspots.cpp
+++ b/engines/gob/hotspots.cpp
@@ -477,7 +477,7 @@ void Hotspots::call(uint16 offset) {
_shouldPush = true;
- int16 stackSize = _stack.size();
+ Common::Stack<StackEntry>::size_type stackSize = _stack.size();
_vm->_inter->funcBlock(0);