diff options
author | Filippos Karapetis | 2009-10-25 20:53:07 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-10-25 20:53:07 +0000 |
commit | 1a4b61739832a1f1d597b9c56e67dd8b80b32f76 (patch) | |
tree | 3c80fcc922210f4e89b134443b45bba8365febbe /engines/sci/engine | |
parent | 0315264328af6b34a4c9e1028bba07a636da5df8 (diff) | |
download | scummvm-rg350-1a4b61739832a1f1d597b9c56e67dd8b80b32f76.tar.gz scummvm-rg350-1a4b61739832a1f1d597b9c56e67dd8b80b32f76.tar.bz2 scummvm-rg350-1a4b61739832a1f1d597b9c56e67dd8b80b32f76.zip |
- 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
Diffstat (limited to 'engines/sci/engine')
-rw-r--r-- | engines/sci/engine/game.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
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); } |