From 8a41736496d4109b2c832ac8b176c5e1ebe9c457 Mon Sep 17 00:00:00 2001 From: Toad King Date: Thu, 14 Jun 2012 23:28:56 -0400 Subject: use the slower, more accurate SPC700 modes hack around sounds being higher pitched than they should be --- libretro/libretro.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libretro') diff --git a/libretro/libretro.cpp b/libretro/libretro.cpp index 42601fa..4af81a1 100644 --- a/libretro/libretro.cpp +++ b/libretro/libretro.cpp @@ -167,8 +167,8 @@ void retro_get_system_info(struct retro_system_info *info) } static int16 audio_buf[0x10000]; -static int avail; -static int samplerate = 32000; +static unsigned avail; +static float samplerate = 32040.5f; void S9xGenerateSound() { @@ -368,8 +368,8 @@ void retro_run (void) { IPPU.RenderThisFrame = TRUE; S9xMainLoop(); - S9xMixSamples(audio_buf, avail * 2); - audio_batch_cb((int16_t *) audio_buf, avail); + S9xMixSamples(audio_buf, avail); + audio_batch_cb((int16_t *) audio_buf, avail >> 1); poll_cb(); @@ -427,15 +427,15 @@ bool retro_load_game(const struct retro_game_info *game) //S9xGraphicsInit(); S9xReset(); - Settings.asmspc700 = true; - CPU.APU_APUExecuting = Settings.APUEnabled = 3; + Settings.asmspc700 = false; + CPU.APU_APUExecuting = Settings.APUEnabled = 1; Settings.SixteenBitSound = true; so.stereo = Settings.Stereo; so.playback_rate = Settings.SoundPlaybackRate; S9xSetPlaybackRate(so.playback_rate); S9xSetSoundMute(FALSE); - avail = samplerate / (Settings.PAL ? 50 : 60); + avail = (samplerate / (Settings.PAL ? 50 : 60)) << 1; ZeroMemory(audio_buf, sizeof(audio_buf)); -- cgit v1.2.3