[Scummvm-git-logs] scummvm master -> 2140a4b540f9102f8f3acd13c724c8fc86e3f15a
sev-
noreply at scummvm.org
Tue Jun 30 19:42:02 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
2140a4b540 MACS2: Fix compilation after new cursorman API
Commit: 2140a4b540f9102f8f3acd13c724c8fc86e3f15a
https://github.com/scummvm/scummvm/commit/2140a4b540f9102f8f3acd13c724c8fc86e3f15a
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-06-30T21:41:42+02:00
Commit Message:
MACS2: Fix compilation after new cursorman API
Changed paths:
engines/macs2/view1.cpp
diff --git a/engines/macs2/view1.cpp b/engines/macs2/view1.cpp
index b4086595442..eb5a2cf9a51 100644
--- a/engines/macs2/view1.cpp
+++ b/engines/macs2/view1.cpp
@@ -362,7 +362,7 @@ void View1::updateCursor(const byte *palette) {
rgbaCursor[i] = rgbaCursorFormat.RGBToColor(paletteEntry[0], paletteEntry[1], paletteEntry[2]);
}
- CursorMan.replaceCursor(rgbaCursor.data(), width, height, width >> 1, height >> 1, 0, false, &rgbaCursorFormat);
+ CursorMan.replaceCursor(rgbaCursor.data(), width, height, width >> 1, height >> 1, 0, &rgbaCursorFormat);
// Enable a cursor palette so the backend won't re-blit the cursor on
// every screen palette change. The macs2 engine uses RGBA cursors with
// baked-in palette colors, so the cursor palette content is irrelevant -
More information about the Scummvm-git-logs
mailing list