diff options
author | Matthew Hoops | 2012-04-10 14:47:16 -0400 |
---|---|---|
committer | Matthew Hoops | 2012-04-10 14:47:16 -0400 |
commit | 6ae0ff377894ea3188fc1f2c9ffc5c75a12907dd (patch) | |
tree | bb5f7877146bde626ffb1023d85299becd7d6716 | |
parent | 981833b34e73905045338053d528af68f81884d7 (diff) | |
download | scummvm-rg350-6ae0ff377894ea3188fc1f2c9ffc5c75a12907dd.tar.gz scummvm-rg350-6ae0ff377894ea3188fc1f2c9ffc5c75a12907dd.tar.bz2 scummvm-rg350-6ae0ff377894ea3188fc1f2c9ffc5c75a12907dd.zip |
PEGASUS: Mark the cursor as dirty when hiding it too
-rw-r--r-- | engines/pegasus/cursor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/pegasus/cursor.cpp b/engines/pegasus/cursor.cpp index ea5fc74501..205336a00b 100644 --- a/engines/pegasus/cursor.cpp +++ b/engines/pegasus/cursor.cpp @@ -104,6 +104,7 @@ void Cursor::show() { void Cursor::hide() { CursorMan.showMouse(false); setCurrentFrameIndex(0); + ((PegasusEngine *)g_engine)->_gfx->markCursorAsDirty(); } void Cursor::hideUntilMoved() { |