aboutsummaryrefslogtreecommitdiff
path: root/engines/made/screen.cpp
diff options
context:
space:
mode:
authorBenjamin Haisch2008-05-26 07:27:46 +0000
committerBenjamin Haisch2008-05-26 07:27:46 +0000
commitaa02a6758a8c5933aca3d80b5d1c3a2af5c7f300 (patch)
treeeb7da560189729bc9d1dcd8fb659bc368bb4c5cf /engines/made/screen.cpp
parent365513d9e4ff94fb46790cde3470e2500d2f3c17 (diff)
downloadscummvm-rg350-aa02a6758a8c5933aca3d80b5d1c3a2af5c7f300.tar.gz
scummvm-rg350-aa02a6758a8c5933aca3d80b5d1c3a2af5c7f300.tar.bz2
scummvm-rg350-aa02a6758a8c5933aca3d80b5d1c3a2af5c7f300.zip
- Hopefully fixed 'responsiveness' of the mouse cursor/event handling
- Disabled auto dirty rects which caused major gfx problems - Added default mouse cursor for Manhole: N&E - Fixed sound rate for Manhole: N&E - Don't automatically show mouse cursor when a new cursor was loaded svn-id: r32279
Diffstat (limited to 'engines/made/screen.cpp')
-rw-r--r--engines/made/screen.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/made/screen.cpp b/engines/made/screen.cpp
index e85ca71c59..754a45016c 100644
--- a/engines/made/screen.cpp
+++ b/engines/made/screen.cpp
@@ -352,6 +352,8 @@ void Screen::updateSprites() {
_vm->_system->copyRectToScreen((const byte*)_workScreen->pixels, _workScreen->pitch, 0, 0, _workScreen->w, _workScreen->h);
+ _vm->_system->updateScreen();
+
}
void Screen::clearChannels() {
@@ -824,4 +826,8 @@ void Screen::clearSpriteList() {
_spriteList.clear();
}
+void Screen::setDefaultMouseCursor() {
+ CursorMan.replaceCursor(defaultMouseCursor, 16, 16, 9, 2, 0);
+}
+
} // End of namespace Made