From f238a12b27ebfa9847814b9972fdb5789e484533 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 6 Nov 2008 14:27:13 +0000 Subject: Got rid of OSystem::ARGBToColor and colorToARGB svn-id: r34911 --- backends/platform/wii/osystem_gfx.cpp | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'backends/platform/wii/osystem_gfx.cpp') 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; -- cgit v1.2.3