mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-26 03:37:53 +00:00
SHERLOCK: Fix gcc warnings
This commit is contained in:
parent
ff28b217b3
commit
9d67c95359
@ -51,7 +51,7 @@ private:
|
||||
int _lookHelp;
|
||||
int _bgFound, _oldBgFound;
|
||||
int _help, _oldHelp;
|
||||
char _key, _oldKey;
|
||||
int _key, _oldKey;
|
||||
int _temp, _oldTemp;
|
||||
int _oldLook;
|
||||
bool _keyboardInput;
|
||||
|
@ -1026,7 +1026,7 @@ void Talk::pushSequence(int speaker) {
|
||||
void Talk::pushTalkSequence(Object *obj) {
|
||||
// Check if the shape is already on the stack
|
||||
for (uint idx = 0; idx < TALK_SEQUENCE_STACK_SIZE; ++idx) {
|
||||
if (_talkSequenceStack[idx]._obj = obj)
|
||||
if (_talkSequenceStack[idx]._obj == obj)
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user