aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/cursor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/groovie/cursor.cpp')
-rw-r--r--engines/groovie/cursor.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/groovie/cursor.cpp b/engines/groovie/cursor.cpp
index 3b6c7a93bd..6a91600dbb 100644
--- a/engines/groovie/cursor.cpp
+++ b/engines/groovie/cursor.cpp
@@ -418,4 +418,10 @@ GrvCursorMan_v2::GrvCursorMan_v2(OSystem *system) :
GrvCursorMan_v2::~GrvCursorMan_v2() {
}
+void GrvCursorMan_v2::setStyle(uint8 newStyle) {
+ // Cursor 4 is actually cursor 3, but with some changes to alpha blending
+ // (which is currently not handled)
+ GrvCursorMan::setStyle(newStyle == 4 ? 3 : newStyle);
+}
+
} // End of Groovie namespace