aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/graphics.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2007-07-15 10:10:48 +0000
committerNicola Mettifogo2007-07-15 10:10:48 +0000
commit9b4cfc5bbe70176a4b944af8e6c4897fc3e013e0 (patch)
tree0be9726e2bcda64f357297d6fbf29cb4d560384e /engines/parallaction/graphics.cpp
parentd725c5fab68e761784086631c16eac8a91eff41e (diff)
downloadscummvm-rg350-9b4cfc5bbe70176a4b944af8e6c4897fc3e013e0.tar.gz
scummvm-rg350-9b4cfc5bbe70176a4b944af8e6c4897fc3e013e0.tar.bz2
scummvm-rg350-9b4cfc5bbe70176a4b944af8e6c4897fc3e013e0.zip
Screen update is no more triggered automatically when performing full screen-size blits on Front buffer. Menu code has been changed accordingly to retain consistency.
svn-id: r28097
Diffstat (limited to 'engines/parallaction/graphics.cpp')
-rw-r--r--engines/parallaction/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/graphics.cpp b/engines/parallaction/graphics.cpp
index 7474316460..cdbf41eb2c 100644
--- a/engines/parallaction/graphics.cpp
+++ b/engines/parallaction/graphics.cpp
@@ -285,7 +285,7 @@ void Gfx::clearScreen(Gfx::Buffers buffer) {
void Gfx::copyScreen(Gfx::Buffers srcbuffer, Gfx::Buffers dstbuffer) {
memcpy(_buffers[dstbuffer], _buffers[srcbuffer], SCREEN_WIDTH*SCREEN_HEIGHT);
- if (dstbuffer == kBitFront) updateScreen();
+// if (dstbuffer == kBitFront) updateScreen();
return;
}