diff options
author | Paul Gilbert | 2015-09-06 21:11:02 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-09-06 21:11:02 -0400 |
commit | b906cd2b45ea9e322c51d12868fd46c49db4a661 (patch) | |
tree | 2d97866d97d671f4fcfa63589a8ab4b72d5ae74f /engines/sherlock | |
parent | e0ad8a9ef56095df91273b1d27c6511d702546fd (diff) | |
download | scummvm-rg350-b906cd2b45ea9e322c51d12868fd46c49db4a661.tar.gz scummvm-rg350-b906cd2b45ea9e322c51d12868fd46c49db4a661.tar.bz2 scummvm-rg350-b906cd2b45ea9e322c51d12868fd46c49db4a661.zip |
SHERLOCK: 3DO: Use better RGB conversion
Diffstat (limited to 'engines/sherlock')
-rw-r--r-- | engines/sherlock/scalpel/scalpel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/scalpel/scalpel.cpp b/engines/sherlock/scalpel/scalpel.cpp index d1dad93b1a..cb8fefe9d7 100644 --- a/engines/sherlock/scalpel/scalpel.cpp +++ b/engines/sherlock/scalpel/scalpel.cpp @@ -194,7 +194,7 @@ uint PEN_COLOR; /*----------------------------------------------------------------*/ -#define FROM_RGB(r, g, b) pixelFormatRGB565.ARGBToColor(0, r, g, b) +#define FROM_RGB(r, g, b) pixelFormatRGB565.RGBToColor(r, g, b) ScalpelEngine::ScalpelEngine(OSystem *syst, const SherlockGameDescription *gameDesc) : SherlockEngine(syst, gameDesc) { |