mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-03 09:23:37 +00:00
SCUMM: Fix glitch introduced by DOTT Chron-O-John workaround
The mainRoutine() function returns a byte, not a bool. This caused text to be partly erased when drugging the piranha poodles in MI1. Probably other things as well.
This commit is contained in:
parent
820b226283
commit
2937c616ae
@ -948,7 +948,7 @@ byte ClassicCostumeRenderer::drawLimb(const Actor *a, int limb) {
|
||||
}
|
||||
}
|
||||
|
||||
bool result = mainRoutine(xmoveCur, ymoveCur);
|
||||
byte result = mainRoutine(xmoveCur, ymoveCur);
|
||||
|
||||
_mirror = mirror;
|
||||
return result;
|
||||
|
Loading…
x
Reference in New Issue
Block a user