aboutsummaryrefslogtreecommitdiff
path: root/backends/null
diff options
context:
space:
mode:
authorMax Horn2004-03-28 16:30:50 +0000
committerMax Horn2004-03-28 16:30:50 +0000
commit14378cb56e18237cf1b8b5e088995e0b91f47410 (patch)
treee646deabd966699f0538880f74883255df2810bb /backends/null
parentefb5f3777a2aa664c6bc5e7fb5ab3f2b92da6ca8 (diff)
downloadscummvm-rg350-14378cb56e18237cf1b8b5e088995e0b91f47410.tar.gz
scummvm-rg350-14378cb56e18237cf1b8b5e088995e0b91f47410.tar.bz2
scummvm-rg350-14378cb56e18237cf1b8b5e088995e0b91f47410.zip
Renamed more OSystem methods
svn-id: r13410
Diffstat (limited to 'backends/null')
-rw-r--r--backends/null/null.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/null/null.cpp b/backends/null/null.cpp
index f78754d813..71685882f7 100644
--- a/backends/null/null.cpp
+++ b/backends/null/null.cpp
@@ -31,12 +31,12 @@ class OSystem_NULL : public OSystem {
public:
void setPalette(const byte *colors, uint start, uint num) {}
void initSize(uint w, uint h);
- void copy_rect(const byte *buf, int pitch, int x, int y, int w, int h) {}
+ void copyRectToScreen(const byte *buf, int pitch, int x, int y, int w, int h) {}
void move_screen(int dx, int dy) {}
void updateScreen() {}
- bool show_mouse(bool visible) { return false; }
+ bool showMouse(bool visible) { return false; }
void set_mouse_pos(int x, int y) {}
- void set_mouse_cursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y) {}
+ void setMouseCursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y) {}
void set_shake_pos(int shake_pos) {}
uint32 get_msecs();
void delay_msecs(uint msecs);