[Scummvm-git-logs] scummvm master -> c1197c2aad892206c774f9c6088164cad60bacd4
sev-
noreply at scummvm.org
Sat Jun 24 10:17:03 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
c1197c2aad HOPKINS: Fix cursor not scaling in OpenGL
Commit: c1197c2aad892206c774f9c6088164cad60bacd4
https://github.com/scummvm/scummvm/commit/c1197c2aad892206c774f9c6088164cad60bacd4
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2023-06-24T13:16:59+03:00
Commit Message:
HOPKINS: Fix cursor not scaling in OpenGL
Changed paths:
engines/hopkins/events.cpp
diff --git a/engines/hopkins/events.cpp b/engines/hopkins/events.cpp
index 363d1ddb894..1f606400810 100644
--- a/engines/hopkins/events.cpp
+++ b/engines/hopkins/events.cpp
@@ -522,7 +522,7 @@ void EventsManager::updateCursor() {
// Set the ScummVM cursor from the surface
CursorMan.replaceCursorPalette(cursorPalette, 0, PALETTE_SIZE - 1);
CursorMan.replaceCursor(cursorSurface, _vm->_objectsMan->getObjectWidth(), _vm->_objectsMan->getObjectHeight(),
- xOffset, 0, 0, true);
+ xOffset, 0, 0, false);
// Delete the cursor surface and palette
delete[] cursorPalette;
More information about the Scummvm-git-logs
mailing list