Change default value/maximum setting for audio_latency in SDL to match that of baseline. (no whatsnew)

This commit is contained in:
Scott Stone 2011-05-19 23:58:10 +00:00
parent cfd6731fa8
commit af20a718d3
2 changed files with 2 additions and 2 deletions

View File

@ -189,7 +189,7 @@ const options_entry sdl_options::s_option_entries[] =
// sound options
{ NULL, NULL, OPTION_HEADER, "SOUND OPTIONS" },
{ SDLOPTION_AUDIO_LATENCY, "3", OPTION_INTEGER, "set audio latency (increase to reduce glitches, decrease for responsiveness)" },
{ SDLOPTION_AUDIO_LATENCY, "2", OPTION_INTEGER, "set audio latency (increase to reduce glitches, decrease for responsiveness)" },
// keyboard mapping
{ NULL, NULL, OPTION_HEADER, "SDL KEYBOARD MAPPING" },

View File

@ -37,7 +37,7 @@ static int stream_in_initialized = 0;
static int stream_loop = 0;
// maximum audio latency
#define MAX_AUDIO_LATENCY 10
#define MAX_AUDIO_LATENCY 5
//============================================================
// LOCAL VARIABLES