mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
Enable content runtime log by default
This commit is contained in:
parent
8841fb4005
commit
c990b29c09
@ -954,7 +954,7 @@ static const bool ui_companion_toggle = false;
|
||||
static const bool desktop_menu_enable = true;
|
||||
|
||||
/* Keep track of how long each core+content has been running for over time */
|
||||
static const bool content_runtime_log = false;
|
||||
#define DEFAULT_CONTENT_RUNTIME_LOG true
|
||||
|
||||
/* Keep track of how long each content has been running for over time (ignores core) */
|
||||
static const bool content_runtime_log_aggregate = false;
|
||||
|
@ -1635,7 +1635,7 @@ static struct config_bool_setting *populate_settings_bool(settings_t *settings,
|
||||
#endif
|
||||
|
||||
SETTING_BOOL("playlist_use_old_format", &settings->bools.playlist_use_old_format, true, playlist_use_old_format, false);
|
||||
SETTING_BOOL("content_runtime_log", &settings->bools.content_runtime_log, true, content_runtime_log, false);
|
||||
SETTING_BOOL("content_runtime_log", &settings->bools.content_runtime_log, true, DEFAULT_CONTENT_RUNTIME_LOG, false);
|
||||
SETTING_BOOL("content_runtime_log_aggregate", &settings->bools.content_runtime_log_aggregate, true, content_runtime_log_aggregate, false);
|
||||
SETTING_BOOL("playlist_show_sublabels", &settings->bools.playlist_show_sublabels, true, playlist_show_sublabels, false);
|
||||
SETTING_BOOL("playlist_sort_alphabetical", &settings->bools.playlist_sort_alphabetical, true, playlist_sort_alphabetical, false);
|
||||
|
@ -8023,7 +8023,7 @@ static bool setting_append_list(
|
||||
&settings->bools.content_runtime_log,
|
||||
MENU_ENUM_LABEL_CONTENT_RUNTIME_LOG,
|
||||
MENU_ENUM_LABEL_VALUE_CONTENT_RUNTIME_LOG,
|
||||
content_runtime_log,
|
||||
DEFAULT_CONTENT_RUNTIME_LOG,
|
||||
MENU_ENUM_LABEL_VALUE_OFF,
|
||||
MENU_ENUM_LABEL_VALUE_ON,
|
||||
&group_info,
|
||||
|
Loading…
Reference in New Issue
Block a user