default config adjustments

This commit is contained in:
notaz 2013-06-29 03:38:32 +03:00
parent 98dbc3ab3a
commit 720bfc5d9f
4 changed files with 11 additions and 9 deletions

6
configure vendored
View file

@ -123,10 +123,8 @@ if [ "x$sound_drivers" != "x" ]; then
done done
fi fi
if [ "$need_libpicofe" = "yes" ]; then if ! test -f "platform/libpicofe/README"; then
if ! test -f "frontend/libpicofe/README"; then fail "libpicofe is missing, please run 'git submodule update --init'"
fail "libpicofe is missing, please run 'git submodule init && git submodule update'"
fi
fi fi
#if [ "$need_warm" = "yes" ]; then #if [ "$need_warm" = "yes" ]; then

View file

@ -535,7 +535,8 @@ void emu_prep_defconfig(void)
memset(&defaultConfig, 0, sizeof(defaultConfig)); memset(&defaultConfig, 0, sizeof(defaultConfig));
defaultConfig.EmuOpt = 0x9d | EOPT_RAM_TIMINGS|EOPT_EN_CD_LEDS; defaultConfig.EmuOpt = 0x9d | EOPT_RAM_TIMINGS|EOPT_EN_CD_LEDS;
defaultConfig.s_PicoOpt = POPT_EN_STEREO|POPT_EN_FM|POPT_EN_PSG|POPT_EN_Z80 | defaultConfig.s_PicoOpt = POPT_EN_STEREO|POPT_EN_FM|POPT_EN_PSG|POPT_EN_Z80 |
POPT_EN_MCD_PCM|POPT_EN_MCD_CDDA|POPT_EN_SVP_DRC|POPT_ACC_SPRITES | POPT_EN_MCD_PCM|POPT_EN_MCD_CDDA|POPT_EN_MCD_GFX |
POPT_EN_SVP_DRC|POPT_ACC_SPRITES |
POPT_EN_32X|POPT_EN_PWM; POPT_EN_32X|POPT_EN_PWM;
defaultConfig.s_PsndRate = 44100; defaultConfig.s_PsndRate = 44100;
defaultConfig.s_PicoRegion = 0; // auto defaultConfig.s_PicoRegion = 0; // auto

@ -1 +1 @@
Subproject commit 6282e17ef5f37915df1a77b5d7138c666e94d0fb Subproject commit 8ef1ad3218d7677f3dbf279095cd2fc58966547f

View file

@ -571,9 +571,12 @@ void retro_init(void)
environ_cb(RETRO_ENVIRONMENT_SET_DISK_CONTROL_INTERFACE, &disk_control); environ_cb(RETRO_ENVIRONMENT_SET_DISK_CONTROL_INTERFACE, &disk_control);
PicoOpt = POPT_EN_STEREO|POPT_EN_FM|POPT_EN_PSG|POPT_EN_Z80 PicoOpt = POPT_EN_STEREO|POPT_EN_FM|POPT_EN_PSG|POPT_EN_Z80
| POPT_EN_MCD_PCM|POPT_EN_MCD_CDDA|POPT_EN_SVP_DRC | POPT_EN_MCD_PCM|POPT_EN_MCD_CDDA|POPT_EN_MCD_GFX
| POPT_ACC_SPRITES|POPT_EN_32X|POPT_EN_PWM | POPT_EN_32X|POPT_EN_PWM
| POPT_DIS_32C_BORDER; | POPT_ACC_SPRITES|POPT_DIS_32C_BORDER;
#ifdef __arm__
PicoOpt |= POPT_EN_SVP_DRC;
#endif
PsndRate = 44100; PsndRate = 44100;
PicoAutoRgnOrder = 0x184; // US, EU, JP PicoAutoRgnOrder = 0x184; // US, EU, JP
PicoCDBuffers = 0; PicoCDBuffers = 0;