diff options
author | Max Horn | 2005-03-14 08:24:39 +0000 |
---|---|---|
committer | Max Horn | 2005-03-14 08:24:39 +0000 |
commit | 4daf4c47b890aac88f31874892fd0bae1e7efcbb (patch) | |
tree | c14a6ce8be3fa8fe4697c9587bfc0af6a7ac7d26 /backends/sdl | |
parent | 654528422dbe9174eaad34bde7bfab5b4c29739d (diff) | |
download | scummvm-rg350-4daf4c47b890aac88f31874892fd0bae1e7efcbb.tar.gz scummvm-rg350-4daf4c47b890aac88f31874892fd0bae1e7efcbb.tar.bz2 scummvm-rg350-4daf4c47b890aac88f31874892fd0bae1e7efcbb.zip |
Fix method names to comply to our coding standards
svn-id: r17134
Diffstat (limited to 'backends/sdl')
-rw-r--r-- | backends/sdl/sdl-common.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/sdl/sdl-common.h b/backends/sdl/sdl-common.h index 5a92840040..51bde1c457 100644 --- a/backends/sdl/sdl-common.h +++ b/backends/sdl/sdl-common.h @@ -144,10 +144,10 @@ public: virtual int16 getWidth(); virtual int16 getOverlayHeight() { return _overlayHeight; } virtual int16 getOverlayWidth() { return _overlayWidth; } - virtual int ScreenToOverlayX(int x) { return x * _overlayScale; } - virtual int ScreenToOverlayY(int y) { return y * _overlayScale; } - virtual int OverlayToScreenX(int x) { return x / _overlayScale; } - virtual int OverlayToScreenY(int y) { return y / _overlayScale; } + virtual int screenToOverlayX(int x) { return x * _overlayScale; } + virtual int screenToOverlayY(int y) { return y * _overlayScale; } + virtual int overlayToScreenX(int x) { return x / _overlayScale; } + virtual int overlayToScreenY(int y) { return y / _overlayScale; } // Methods that convert RGB to/from colors suitable for the overlay. virtual OverlayColor RGBToColor(uint8 r, uint8 g, uint8 b); |