mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 05:32:45 +00:00
HDB: Fix warnings
This commit is contained in:
parent
d12d3ee647
commit
c71426e2f8
@ -2058,6 +2058,9 @@ void aiFatFrogAction(AIEntity *e) {
|
||||
e->animFrame++;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
// no op
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1729,8 +1729,8 @@ void AI::loadSaveFile(Common::InSaveFile *in) {
|
||||
|
||||
// Cache Gfx for Panic Zone, if needed
|
||||
for (i = 0; i < _numTeleporters; i++)
|
||||
if ((_teleporters[i].anim1 == 2) ||
|
||||
(_teleporters[i].anim2 == 2) &&
|
||||
if (((_teleporters[i].anim1 == 2) ||
|
||||
(_teleporters[i].anim2 == 2)) &&
|
||||
!g_hdb->_window->_pzInfo.gfxPanic) {
|
||||
g_hdb->_window->loadPanicZoneGfx();
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user