aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/events.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-09-24 22:32:15 -0400
committerPaul Gilbert2016-09-24 22:32:15 -0400
commitf77367c42bc699fd51dbde775f09073ca6658a7d (patch)
tree1d2ffe3df27b9c2334502bea45579f48dbfff944 /engines/xeen/events.cpp
parentaa05f9c8025b4db260dc25d6ceb871dc37cd0146 (diff)
downloadscummvm-rg350-f77367c42bc699fd51dbde775f09073ca6658a7d.tar.gz
scummvm-rg350-f77367c42bc699fd51dbde775f09073ca6658a7d.tar.bz2
scummvm-rg350-f77367c42bc699fd51dbde775f09073ca6658a7d.zip
XEEN: Fix display of cursor
Diffstat (limited to 'engines/xeen/events.cpp')
-rw-r--r--engines/xeen/events.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/events.cpp b/engines/xeen/events.cpp
index f89164903c..55ff24491d 100644
--- a/engines/xeen/events.cpp
+++ b/engines/xeen/events.cpp
@@ -43,7 +43,7 @@ EventsManager::~EventsManager() {
void EventsManager::setCursor(int cursorId) {
XSurface cursor;
- _sprites.draw(cursor, cursorId);
+ _sprites.draw(cursor, cursorId, Common::Point(0, 0), SPRFLAG_RESIZE);
CursorMan.replaceCursor(cursor.getPixels(), cursor.w, cursor.h, 0, 0, 0);
showCursor();