diff options
author | Paul Gilbert | 2015-06-07 09:46:24 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-06-07 09:46:24 -0400 |
commit | ef06a86ac87d71bcc1248c29682888dc8e8012d4 (patch) | |
tree | 67e4c7b70c1bfa9de8a56550271e7ba2428e2030 /engines | |
parent | 99ee0ecc4a9f921c6afcf26fa7424a9f9dc656d0 (diff) | |
download | scummvm-rg350-ef06a86ac87d71bcc1248c29682888dc8e8012d4.tar.gz scummvm-rg350-ef06a86ac87d71bcc1248c29682888dc8e8012d4.tar.bz2 scummvm-rg350-ef06a86ac87d71bcc1248c29682888dc8e8012d4.zip |
SHERLOCK: Fix compiler warning
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sherlock/user_interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/user_interface.h b/engines/sherlock/user_interface.h index ff50884e47..a9fb8cb0ea 100644 --- a/engines/sherlock/user_interface.h +++ b/engines/sherlock/user_interface.h @@ -72,7 +72,7 @@ public: // TODO: Not so sure these should be in the base class. May want to refactor them to SherlockEngine, or refactor // various Scalpel dialogs to keep their own private state of key/selections - char _key, _oldKey; + signed char _key, _oldKey; int _selector, _oldSelector; int _temp, _oldTemp; int _temp1; |