mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 12:39:56 +00:00
change white palette entry for cursor in order to avoid glitch when palFadeIn is called
svn-id: r11130
This commit is contained in:
parent
ba098a3a5b
commit
5caf79c8e5
@ -829,7 +829,7 @@ void Display::mouseCursorInit(uint8 *buf, uint16 w, uint16 h, uint16 xhs, uint16
|
||||
uint8 *p = buf;
|
||||
while (size--) {
|
||||
if (*p == 255) {
|
||||
*p = 223;
|
||||
*p = 254;
|
||||
}
|
||||
else if (*p == 0) {
|
||||
*p = 255;
|
||||
|
Loading…
Reference in New Issue
Block a user