aboutsummaryrefslogtreecommitdiff
path: root/backends/morphos/morphos.cpp
diff options
context:
space:
mode:
authorJonathan Gray2003-03-08 06:53:32 +0000
committerJonathan Gray2003-03-08 06:53:32 +0000
commit361e312a6c8f0520b20ae8089f444373bee49890 (patch)
treeebe669746fe43352c26f07ad46d18083a07c36cd /backends/morphos/morphos.cpp
parente4a8edfc67d77d6b7acc525db24282715deb1744 (diff)
downloadscummvm-rg350-361e312a6c8f0520b20ae8089f444373bee49890.tar.gz
scummvm-rg350-361e312a6c8f0520b20ae8089f444373bee49890.tar.bz2
scummvm-rg350-361e312a6c8f0520b20ae8089f444373bee49890.zip
change RBG to RGB which follows the argument order and hence makes more sense...
svn-id: r6767
Diffstat (limited to 'backends/morphos/morphos.cpp')
-rw-r--r--backends/morphos/morphos.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/morphos/morphos.cpp b/backends/morphos/morphos.cpp
index 36515463f5..065b4e1021 100644
--- a/backends/morphos/morphos.cpp
+++ b/backends/morphos/morphos.cpp
@@ -1543,7 +1543,7 @@ void OSystem_MorphOS::copy_rect_overlay(const int16 *ovl, int pitch, int x, int
int16 col;
col = *ovl++;
- colorToRBG(col, r, g, b);
+ colorToRGB(col, r, g, b);
*dest++ = r;
*dest++ = g;
*dest++ = b;