diff options
author | Max Horn | 2004-09-04 01:31:04 +0000 |
---|---|---|
committer | Max Horn | 2004-09-04 01:31:04 +0000 |
commit | 4bd05071e511c077811040c7c746d1c5f8e8c3f8 (patch) | |
tree | 15ddd6e0ab7b7474668ea07bca628ddbd4efa8a4 /backends/null | |
parent | b086ee7f67b7de4d218ff1e4862271d9e921ba9c (diff) | |
download | scummvm-rg350-4bd05071e511c077811040c7c746d1c5f8e8c3f8.tar.gz scummvm-rg350-4bd05071e511c077811040c7c746d1c5f8e8c3f8.tar.bz2 scummvm-rg350-4bd05071e511c077811040c7c746d1c5f8e8c3f8.zip |
Got rid of OSystem::move_screen
svn-id: r14882
Diffstat (limited to 'backends/null')
-rw-r--r-- | backends/null/null.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/backends/null/null.cpp b/backends/null/null.cpp index 3e2b07cd53..ff23217483 100644 --- a/backends/null/null.cpp +++ b/backends/null/null.cpp @@ -52,7 +52,6 @@ public: virtual void setPalette(const byte *colors, uint start, uint num); virtual void copyRectToScreen(const byte *buf, int pitch, int x, int y, int w, int h); virtual void updateScreen(); - virtual void move_screen(int dx, int dy, int height); virtual void set_shake_pos(int shakeOffset); virtual void showOverlay(); @@ -181,10 +180,6 @@ void OSystem_NULL::updateScreen() { } -void OSystem_NULL::move_screen(int dx, int dy, int height) -{ -} - void OSystem_NULL::set_shake_pos(int shakeOffset) { } |