aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2005-03-14 08:24:39 +0000
committerMax Horn2005-03-14 08:24:39 +0000
commit4daf4c47b890aac88f31874892fd0bae1e7efcbb (patch)
treec14a6ce8be3fa8fe4697c9587bfc0af6a7ac7d26 /common
parent654528422dbe9174eaad34bde7bfab5b4c29739d (diff)
downloadscummvm-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 'common')
-rw-r--r--common/system.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/system.h b/common/system.h
index 0c66f77334..6ae8a659a4 100644
--- a/common/system.h
+++ b/common/system.h
@@ -327,10 +327,10 @@ public:
virtual void copyRectToOverlay(const OverlayColor *buf, int pitch, int x, int y, int w, int h) = 0;
virtual int16 getOverlayHeight() { return getHeight(); }
virtual int16 getOverlayWidth() { return getWidth(); }
- virtual int ScreenToOverlayX(int x) { return x; }
- virtual int ScreenToOverlayY(int y) { return y; }
- virtual int OverlayToScreenX(int x) { return x; }
- virtual int OverlayToScreenY(int y) { return y; }
+ virtual int screenToOverlayX(int x) { return x; }
+ virtual int screenToOverlayY(int y) { return y; }
+ virtual int overlayToScreenX(int x) { return x; }
+ virtual int overlayToScreenY(int y) { return y; }
/**
* Convert the given RGB triplet into an OverlayColor. A OverlayColor can