FIXED use blargg's default values for echo & stereo
git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@655 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
parent
42ddf91111
commit
ee4fd96d82
|
@ -92,7 +92,7 @@ static void flush_samples()
|
|||
|
||||
int const chan_count = 4;
|
||||
|
||||
gb_effects_config_t gb_effects_config = { false, 0.0f, 0.0f, false };
|
||||
gb_effects_config_t gb_effects_config = { false, 0.2f, 0.15f, false };
|
||||
static gb_effects_config_t gb_effects_config_current;
|
||||
|
||||
static int prevSoundEnable = -1;
|
||||
|
|
|
@ -1598,8 +1598,8 @@ void VBA::loadSettings()
|
|||
|
||||
gb_effects_config.enabled = 1 == regQueryDwordValue( "gbSoundEffectsEnabled", 0 );
|
||||
gb_effects_config.surround = 1 == regQueryDwordValue( "gbSoundEffectsSurround", 0 );
|
||||
gb_effects_config.echo = (float)regQueryDwordValue( "gbSoundEffectsEcho", 0 ) / 100.0f;
|
||||
gb_effects_config.stereo = (float)regQueryDwordValue( "gbSoundEffectsStereo", 0 ) / 100.0f;
|
||||
gb_effects_config.echo = (float)regQueryDwordValue( "gbSoundEffectsEcho", 20 ) / 100.0f;
|
||||
gb_effects_config.stereo = (float)regQueryDwordValue( "gbSoundEffectsStereo", 15 ) / 100.0f;
|
||||
|
||||
tripleBuffering = regQueryDwordValue("tripleBuffering", false) ? true : false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue