pic_port_bounds was only set from command-line parameters it seems, so it's safe to put it together with the rest of the options

svn-id: r39800
This commit is contained in:
Filippos Karapetis 2009-04-02 16:38:33 +00:00
parent 9180f3a9a1
commit 6fe12a0888
6 changed files with 31 additions and 10 deletions

View file

@ -248,7 +248,6 @@ Common::Error SciEngine::run() {
// Default config:
gfx_options_t gfx_options;
gfx_options.pic_port_bounds = gfx_rect(0, 10, 320, 190);
#ifdef CUSTOM_GRAPHICS_OPTIONS
gfx_options.buffer_pics_nr = 0;
@ -267,6 +266,7 @@ Common::Error SciEngine::run() {
gfx_options.res_conf.mod[i] = NULL;
}
gfx_options.workarounds = 0;
gfx_options.pic_port_bounds = gfx_rect(0, 10, 320, 190);
// Default config ends
#endif