diff options
| author | Jody Northup | 2009-07-10 10:45:15 +0000 |
|---|---|---|
| committer | Jody Northup | 2009-07-10 10:45:15 +0000 |
| commit | bb1da36710b8ddc5dd3d4bbf7414dd20b7a646b3 (patch) | |
| tree | 7575a15bfbdc60549c6d4804720ba001c54e7deb /engines/sci/sci.cpp | |
| parent | 2f370ef8ab65db8443c496c47de98740b31c4220 (diff) | |
| download | scummvm-rg350-bb1da36710b8ddc5dd3d4bbf7414dd20b7a646b3.tar.gz scummvm-rg350-bb1da36710b8ddc5dd3d4bbf7414dd20b7a646b3.tar.bz2 scummvm-rg350-bb1da36710b8ddc5dd3d4bbf7414dd20b7a646b3.zip | |
Simplified SCI and groovie's initial graphics setup making use of the overloaded functions.
svn-id: r42331
Diffstat (limited to 'engines/sci/sci.cpp')
| -rw-r--r-- | engines/sci/sci.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index dbb8d4784a..cf08c69738 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -106,8 +106,7 @@ SciEngine::~SciEngine() { Common::Error SciEngine::run() { Graphics::PixelFormat gfxmode; #ifdef ENABLE_RGB_COLOR - gfxmode = _system->getSupportedFormats().front(); - initGraphics(320, 200, false, &gfxmode); + initGraphics(320, 200, false, NULL); #else initGraphics(320, 200, false); #endif |
