mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-04 01:45:08 +01:00
Duct tape fix - setting samplerate to 44Khz fixes the audio
underruns (tested on PS3/PC)
This commit is contained in:
parent
e74ebc3027
commit
13e8181d8b
@ -266,7 +266,7 @@ static const double ntsc_fps = 53693175.0 / (3420.0 * 262.0);
|
|||||||
|
|
||||||
static void init_audio(void)
|
static void init_audio(void)
|
||||||
{
|
{
|
||||||
audio_init(32000, vdp_pal ? pal_fps : ntsc_fps);
|
audio_init(44100, vdp_pal ? pal_fps : ntsc_fps);
|
||||||
soundbuffer = malloc(snd.buffer_size * 2 * 2);
|
soundbuffer = malloc(snd.buffer_size * 2 * 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -737,7 +737,7 @@ static void retro_set_viewport_dimensions(void)
|
|||||||
geom.max_width = 1024;
|
geom.max_width = 1024;
|
||||||
geom.max_height = 512;
|
geom.max_height = 512;
|
||||||
|
|
||||||
timing.sample_rate = 32000;
|
timing.sample_rate = 44100;
|
||||||
|
|
||||||
if (vdp_pal)
|
if (vdp_pal)
|
||||||
timing.fps = pal_fps;
|
timing.fps = pal_fps;
|
||||||
|
Loading…
Reference in New Issue
Block a user