aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorJody Northup2009-07-09 09:09:05 +0000
committerJody Northup2009-07-09 09:09:05 +0000
commitcdad3763dfbacf45599034358a32fc68032e1a30 (patch)
treef84a129ee1acf8aaaa88443e81807f32351c7208 /engines/scumm
parent1d38ead4e78fafa0d2f97dccf889ea392059eb0f (diff)
downloadscummvm-rg350-cdad3763dfbacf45599034358a32fc68032e1a30.tar.gz
scummvm-rg350-cdad3763dfbacf45599034358a32fc68032e1a30.tar.bz2
scummvm-rg350-cdad3763dfbacf45599034358a32fc68032e1a30.zip
Corrected lingering formatting errors that were introduced by the find-and-replace assisted removal of Graphics::PixelFormat::createFormat functions.
svn-id: r42281
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/scumm.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index 347abee190..57283c1fbe 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -1085,8 +1085,7 @@ Common::Error ScummEngine::init() {
(_screenWidth * _textSurfaceMultiplier > 320));
} else if (_game.features & GF_16BIT_COLOR) {
#ifdef ENABLE_RGB_COLOR
- Graphics::PixelFormat format = Graphics::PixelFormat(2, 3, 3, 3, 8, 10, 5, 0, 0)
-;
+ Graphics::PixelFormat format = Graphics::PixelFormat(2, 3, 3, 3, 8, 10, 5, 0, 0);
initGraphics(_screenWidth, _screenHeight, _screenWidth > 320, &format);
if (format != _system->getScreenFormat())
return Common::kUnsupportedColorMode;