aboutsummaryrefslogtreecommitdiff
path: root/common/system.h
diff options
context:
space:
mode:
authorMichael Pearce2002-09-09 05:56:11 +0000
committerMichael Pearce2002-09-09 05:56:11 +0000
commit0fbefc72aa7fd29b74dd2fac41ebfae0dfcac781 (patch)
tree7db3576c01a534d363786bb7a16c18b85eec2452 /common/system.h
parent5b8eb34406373daa7a167f89d32dbe72c3cdc005 (diff)
downloadscummvm-rg350-0fbefc72aa7fd29b74dd2fac41ebfae0dfcac781.tar.gz
scummvm-rg350-0fbefc72aa7fd29b74dd2fac41ebfae0dfcac781.tar.bz2
scummvm-rg350-0fbefc72aa7fd29b74dd2fac41ebfae0dfcac781.zip
Applied roever's screen effects patch (#602595) and fixed LethalWP's Makefile ;)
svn-id: r4909
Diffstat (limited to 'common/system.h')
-rw-r--r--common/system.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/system.h b/common/system.h
index 4bac597eb1..c0fabec1b4 100644
--- a/common/system.h
+++ b/common/system.h
@@ -92,6 +92,10 @@ public:
// The screen will not be updated to reflect the new bitmap
virtual void copy_rect(const byte *buf, int pitch, int x, int y, int w, int h) = 0;
+ // Moves the screen content around by the given amount of pixels
+ // but only the top height pixel rows, the rest stays untouched
+ virtual void move_screen(int dx, int dy, int height) = 0;
+
// Update the dirty areas of the screen
virtual void update_screen() = 0;