From 1a4b61739832a1f1d597b9c56e67dd8b80b32f76 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sun, 25 Oct 2009 20:53:07 +0000 Subject: - Removed graphics options code from the old GUI. Almost all of them are not supposed to be modified by the user (e.g. the way lines and brushes are drawn), and we can implement any of them again if needed in the new GUI (but they shouldn't really be needed). - Added a config option to disable dithering in the new GUI if requested, called "undither", which is set to true by default and can be changed to false if needed per game - The per-resource palette code has been removed for now, to be replaced by regular hashmaps (once the FreeSCI scifx reading code has been converted) svn-id: r45378 --- engines/sci/engine/game.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'engines/sci/engine') diff --git a/engines/sci/engine/game.cpp b/engines/sci/engine/game.cpp index b1c08ee2fe..c2db6fc793 100644 --- a/engines/sci/engine/game.cpp +++ b/engines/sci/engine/game.cpp @@ -283,14 +283,6 @@ int _reset_graphics_input(EngineState *s) { } int game_init_graphics(EngineState *s) { -#ifdef CUSTOM_GRAPHICS_OPTIONS -#ifndef WITH_PIC_SCALING - if (s->gfx_state->options->pic0_unscaled == 0) - warning("Pic scaling was disabled; your version of ScummVM has no support for scaled pic drawing built in."); - - s->gfx_state->options->pic0_unscaled = 1; -#endif -#endif return _reset_graphics_input(s); } -- cgit v1.2.3