Skip to content

Commit

Permalink
fix some OSD settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatsuya79 committed Feb 13, 2019
1 parent 250f7e5 commit 3e85f40
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions config.def.h
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,9 @@ static const bool framecount_show = false;
/* Includes displaying the current memory usage/total with FPS/Frames. */
static const bool memory_show = false;

/* Enables displaying various timing statistics. */
static const bool statistics_show = false;

/* Enables use of rewind. This will incur some memory footprint
* depending on the save state buffer. */
static const bool rewind_enable = false;
Expand Down
4 changes: 2 additions & 2 deletions menu/menu_setting.c
Original file line number Diff line number Diff line change
Expand Up @@ -5412,7 +5412,7 @@ static bool setting_append_list(
&settings->bools.video_statistics_show,
MENU_ENUM_LABEL_STATISTICS_SHOW,
MENU_ENUM_LABEL_VALUE_STATISTICS_SHOW,
fps_show,
statistics_show,
MENU_ENUM_LABEL_VALUE_OFF,
MENU_ENUM_LABEL_VALUE_ON,
&group_info,
Expand All @@ -5427,7 +5427,7 @@ static bool setting_append_list(
&settings->bools.video_framecount_show,
MENU_ENUM_LABEL_FRAMECOUNT_SHOW,
MENU_ENUM_LABEL_VALUE_FRAMECOUNT_SHOW,
fps_show,
framecount_show,
MENU_ENUM_LABEL_VALUE_OFF,
MENU_ENUM_LABEL_VALUE_ON,
&group_info,
Expand Down

0 comments on commit 3e85f40

Please sign in to comment.