diff options
author | Filippos Karapetis | 2009-05-10 11:08:50 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-05-10 11:08:50 +0000 |
commit | 3e9ca1a638a24f663b0e8ea39578ca95d80cf37f (patch) | |
tree | 702c2c0e85db77f1f054b34383744283386311af /engines | |
parent | af7a7c95854301c9f87bd7e4efb774c63d3b7bee (diff) | |
download | scummvm-rg350-3e9ca1a638a24f663b0e8ea39578ca95d80cf37f.tar.gz scummvm-rg350-3e9ca1a638a24f663b0e8ea39578ca95d80cf37f.tar.bz2 scummvm-rg350-3e9ca1a638a24f663b0e8ea39578ca95d80cf37f.zip |
Reverted commit #40413
svn-id: r40415
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/game.cpp b/engines/sci/engine/game.cpp index 6e8ae787df..1ebb68f81e 100644 --- a/engines/sci/engine/game.cpp +++ b/engines/sci/engine/game.cpp @@ -67,7 +67,6 @@ static int _init_vocabulary(EngineState *s) { // initialize vocabulary and relat } extern int _allocd_rules; -gfx_color_t black = { PaletteEntry(0, 0, 0), 0, 0, 0, GFX_MASK_VISUAL }; int _reset_graphics_input(EngineState *s) { Resource *resource; @@ -87,6 +86,7 @@ int _reset_graphics_input(EngineState *s) { } } else { // Allocate SCI1 system colors + gfx_color_t black = { PaletteEntry(0, 0, 0), 0, 0, 0, GFX_MASK_VISUAL }; gfxop_set_system_color(s->gfx_state, 0, &black); // Check for Amiga palette file. |