From 7baad4c52e053bc3502ec584bc471aa397d818a7 Mon Sep 17 00:00:00 2001 From: ekeeke31 Date: Fri, 30 Jul 2010 21:18:41 +0000 Subject: [PATCH] modified default config options --- source/gx/config.c | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/source/gx/config.c b/source/gx/config.c index c4e18db..1e5b3d4 100644 --- a/source/gx/config.c +++ b/source/gx/config.c @@ -98,14 +98,25 @@ void config_default(void) config.yscale = 0; config.aspect = 1; config.overscan = 3; - if (VIDEO_HaveComponentCable()) - config.render = 2; - else - config.render = 0; config.ntsc = 0; - config.bilinear = 1; + if (VIDEO_HaveComponentCable()) + { + config.render = 2; + config.bilinear = 1; +#ifdef HW_RVL + config.trap = 1; +#endif + } + else + { + config.render = 0; + config.bilinear = 0; +#ifdef HW_RVL + config.trap = 0; +#endif + } + #ifdef HW_RVL - config.trap = 1; config.gamma = VI_GM_1_0 / 10.0; #endif @@ -125,7 +136,7 @@ void config_default(void) config.s_default = 1; config.s_device = 0; config.bg_type = 0; - config.bg_overlay = 0; + config.bg_overlay = 1; config.screen_w = 658; config.bgm_volume = 100.0; config.sfx_volume = 100.0;