aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/wii/osystem_gfx.cpp
diff options
context:
space:
mode:
authorMax Horn2008-11-06 14:27:13 +0000
committerMax Horn2008-11-06 14:27:13 +0000
commitf238a12b27ebfa9847814b9972fdb5789e484533 (patch)
treefe14180f721904c41ec9f958198338b3ca55ef68 /backends/platform/wii/osystem_gfx.cpp
parent38a4eaa001f89fa201125fbe1b82f6f539ecda12 (diff)
downloadscummvm-rg350-f238a12b27ebfa9847814b9972fdb5789e484533.tar.gz
scummvm-rg350-f238a12b27ebfa9847814b9972fdb5789e484533.tar.bz2
scummvm-rg350-f238a12b27ebfa9847814b9972fdb5789e484533.zip
Got rid of OSystem::ARGBToColor and colorToARGB
svn-id: r34911
Diffstat (limited to 'backends/platform/wii/osystem_gfx.cpp')
-rw-r--r--backends/platform/wii/osystem_gfx.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/backends/platform/wii/osystem_gfx.cpp b/backends/platform/wii/osystem_gfx.cpp
index faad41d5f0..f6406a88ed 100644
--- a/backends/platform/wii/osystem_gfx.cpp
+++ b/backends/platform/wii/osystem_gfx.cpp
@@ -454,16 +454,6 @@ void OSystem_Wii::colorToRGB(OverlayColor color, uint8 &r, uint8 &g, uint8 &b) {
b = (color & 0x1f) << 3;
}
-OverlayColor OSystem_Wii::ARGBToColor(uint8 a, uint8 r, uint8 g, uint8 b) {
- return RGBToColor(r, g, b);
-}
-
-void OSystem_Wii::colorToARGB(OverlayColor color, uint8 &a, uint8 &r, uint8 &g,
- uint8 &b) {
- a = 0xff;
- colorToRGB(color, r, g, b);
-}
-
bool OSystem_Wii::showMouse(bool visible) {
bool last = _mouseVisible;
_mouseVisible = visible;