mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-03 09:23:37 +00:00
DIRECTOR: Fix bitwise reverse ink
This commit is contained in:
parent
b58302cb9d
commit
bc38519523
@ -845,7 +845,7 @@ void inkDrawPixel(int x, int y, int color, void *data) {
|
||||
break;
|
||||
case kInkTypeReverse:
|
||||
// TODO: Migrate from Stage to here
|
||||
*dst ^= *src;
|
||||
*dst ^= ~(*src);
|
||||
break;
|
||||
case kInkTypeGhost:
|
||||
if (*src != p->numColors - 1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user