(nw) fixed typo, and rewind off by default.

This commit is contained in:
Robbbert 2017-12-08 00:42:01 +11:00
parent ece4f6d114
commit 6bec01265d
2 changed files with 2 additions and 2 deletions

View File

@ -462,7 +462,7 @@ static const help_item static_help_list[] =
"\n"
"The rewind command loads the most recent RAM-based state. Rewind states, when enabled, are "
"saved when \"step\", \"over\", or \"out\" command gets executed, storing the machine state as "
"of the moment before actually steping. Consecutively loading rewind states can work like "
"of the moment before actually stepping. Consecutively loading rewind states can work like "
"reverse execution. Depending on which steps forward were taken previously, the bahavior can "
"be similar to GDB's \"reverse-stepi\" or \"reverse-next\". All output for this command is "
"currently echoed into the running machine window. Previous memory and PC tracking statistics "

View File

@ -62,7 +62,7 @@ const options_entry emu_options::s_option_entries[] =
{ nullptr, nullptr, OPTION_HEADER, "CORE STATE/PLAYBACK OPTIONS" },
{ OPTION_STATE, nullptr, OPTION_STRING, "saved state to load" },
{ OPTION_AUTOSAVE, "0", OPTION_BOOLEAN, "enable automatic restore at startup, and automatic save at exit time" },
{ OPTION_REWIND, "1", OPTION_BOOLEAN, "enable rewind savestates" },
{ OPTION_REWIND, "0", OPTION_BOOLEAN, "enable rewind savestates" },
{ OPTION_REWIND_CAPACITY "(1-500)", "100", OPTION_INTEGER, "quantity of states rewind buffer can contain" },
{ OPTION_PLAYBACK ";pb", nullptr, OPTION_STRING, "playback an input file" },
{ OPTION_RECORD ";rec", nullptr, OPTION_STRING, "record an input file" },