mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 03:56:20 +00:00
VCRUISE: Fix GCC Compiler Warnings
This commit is contained in:
parent
2321decd30
commit
1c8af08a9b
@ -2598,7 +2598,7 @@ void Runtime::loadDuplicateRooms() {
|
|||||||
_roomDuplicationOffsets[roomNumber] = 1;
|
_roomDuplicationOffsets[roomNumber] = 1;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
warning("Logic for room %u couldn't be checked for duplication");
|
warning("Logic for room %u couldn't be checked for duplication", roomNumber);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2984,7 +2984,7 @@ bool Runtime::dischargeIdleMouseMove() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (_gameID == GID_SCHIZM && !isOnInteraction) {
|
if (_gameID == GID_SCHIZM && !isOnInteraction) {
|
||||||
if (_traySection.rect.contains(_mousePos) && (_traySection.rect.right - _mousePos.x) < 88u) {
|
if (_traySection.rect.contains(_mousePos) && (_traySection.rect.right - _mousePos.x) < (int) 88u) {
|
||||||
isOnInteraction = true;
|
isOnInteraction = true;
|
||||||
interactionID = kHeroChangeInteractionID;
|
interactionID = kHeroChangeInteractionID;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user