ADL: Fix debug mode hang in hires5 animation

This commit is contained in:
Walter van Niftrik 2018-08-05 01:48:26 +02:00
parent 39acda0c9f
commit 338baf827c

View File

@ -101,6 +101,10 @@ void HiRes5Engine::drawLight(uint index, byte color) const {
}
void HiRes5Engine::animateLights() const {
// Skip this if we're running a debug script
if (_inputScript)
return;
int index;
byte color = 0x2a;