aboutsummaryrefslogtreecommitdiff
path: root/backends/morphos/morphos.cpp
diff options
context:
space:
mode:
authorRuediger Hanke2002-09-23 16:53:11 +0000
committerRuediger Hanke2002-09-23 16:53:11 +0000
commitd5aeb9254e4ce64cf7d457cae7b2b830670d54af (patch)
tree503f2cc712fe91a3eab17f6df7b0acdd11039899 /backends/morphos/morphos.cpp
parent971f47644ef82b06b705745cf21668360516f835 (diff)
downloadscummvm-rg350-d5aeb9254e4ce64cf7d457cae7b2b830670d54af.tar.gz
scummvm-rg350-d5aeb9254e4ce64cf7d457cae7b2b830670d54af.tar.bz2
scummvm-rg350-d5aeb9254e4ce64cf7d457cae7b2b830670d54af.zip
Scaler color fix for Radeon cards in 32 bit depth (and possibly other PC graphics cards, too)
svn-id: r5010
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 d8f65e9e5c..77356dc396 100644
--- a/backends/morphos/morphos.cpp
+++ b/backends/morphos/morphos.cpp
@@ -454,7 +454,7 @@ void OSystem_MorphOS::set_palette(const byte *colors, uint start, uint num)
void OSystem_MorphOS::CreateScreen(CS_DSPTYPE dspType)
{
ULONG mode = INVALID_ID;
- int depths[] = { 8, 15, 16, 24, 32, 0 };
+ int depths[] = { 8, 15, 16, 32, 0 };
int i;
Screen *wb = NULL;