Do not set rewind_enable automatically to true.

This commit is contained in:
Themaister 2011-01-31 19:53:44 +01:00
parent de331bcd9e
commit dd8a9c67c9
2 changed files with 1 additions and 2 deletions

View File

@ -152,7 +152,6 @@ struct global
state_manager_t *state_manager;
void *state_buf;
bool frame_is_reverse;
bool rewind_enable;
#ifdef HAVE_FFMPEG
ffemu_t *rec;

View File

@ -376,7 +376,7 @@ static void parse_config_file(void)
}
if (config_get_bool(conf, "rewind_enable", &tmp_bool))
g_settings.rewind_enable = true;
g_settings.rewind_enable = tmp_bool;
if (config_get_int(conf, "rewind_buffer_size", &tmp_int))
g_settings.rewind_buffer_size = tmp_int * 1000000;