mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-26 14:27:14 +00:00
PRINCE: Fix Signed vs. Unsigned GCC Compiler Warning
This commit is contained in:
parent
8b1535cbdd
commit
31115960e6
@ -98,7 +98,7 @@ bool PtcArchive::openTranslation(const Common::String &filename) {
|
||||
_items[translationNames[i]] = item;
|
||||
}
|
||||
|
||||
if (_items[translationNames[0]]._offset == _stream->pos()) {
|
||||
if ((int32)_items[translationNames[0]]._offset == _stream->pos()) {
|
||||
warning("v0 translation file detected, update is needed");
|
||||
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user