prefs item "sound_buffer"

This commit is contained in:
kanjitalk755 2021-03-17 11:42:37 +09:00
parent 7471c357c3
commit 8064215081
3 changed files with 3 additions and 1 deletions

View File

@ -94,7 +94,7 @@ static bool open_sdl_audio(void)
audio_spec.freq = audio_sample_rates[audio_sample_rate_index] >> 16;
audio_spec.format = (audio_sample_sizes[audio_sample_size_index] == 8) ? AUDIO_U8 : AUDIO_S16MSB;
audio_spec.channels = audio_channel_counts[audio_channel_count_index];
audio_spec.samples = 4096;
audio_spec.samples = 4096 >> PrefsFindInt32("sound_buffer");
audio_spec.callback = stream_func;
audio_spec.userdata = NULL;

View File

@ -83,6 +83,7 @@ prefs_desc common_prefs_items[] = {
{"ignoresegv", TYPE_BOOLEAN, false, "ignore illegal memory accesses"},
{"host_domain", TYPE_STRING, true, "handle DNS requests for this domain on the host (slirp only)"},
{"title", TYPE_STRING, false, "window title"},
{"sound_buffer", TYPE_INT32, false, "sound buffer length"},
{NULL, TYPE_END, false, NULL} // End of list
};

View File

@ -71,6 +71,7 @@ prefs_desc common_prefs_items[] = {
{"host_domain", TYPE_STRING, true, "handle DNS requests for this domain on the host (slirp only)"},
{"redir", TYPE_STRING, true, "port forwarding for slirp"},
{"title", TYPE_STRING, false, "window title"},
{"sound_buffer", TYPE_INT32, false, "sound buffer length"},
{NULL, TYPE_END, false, NULL} // End of list
};