mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
Add help messages
This commit is contained in:
parent
7a2baf553f
commit
5251a83b7e
@ -1121,6 +1121,57 @@ int menu_hash_get_help_us_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
"Increasing this value will increase \n"
|
||||
"performance, but introduce more latency.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_VIDEO_MAX_SWAPCHAIN_IMAGES:
|
||||
snprintf(s, len,
|
||||
"Maximum amount of swapchain images. This \n"
|
||||
"can tell the video driver to use a specific \n"
|
||||
"video buffering mode. \n"
|
||||
" \n"
|
||||
"Single buffering - 1\n"
|
||||
"Double buffering - 2\n"
|
||||
"Triple buffering - 3\n"
|
||||
" \n"
|
||||
"Setting the right buffering mode can have \n"
|
||||
"a big impact on latency.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_VIDEO_SMOOTH:
|
||||
snprintf(s, len,
|
||||
"Smoothens picture with bilinear filtering. \n"
|
||||
"Should be disabled if using shaders.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_TIMEDATE_ENABLE:
|
||||
snprintf(s, len,
|
||||
"Shows current date and/or time inside menu.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_CORE_ENABLE:
|
||||
snprintf(s, len,
|
||||
"Shows current core inside menu.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_DYNAMIC_WALLPAPER:
|
||||
snprintf(s, len,
|
||||
"Dynamically load a new wallpaper \n"
|
||||
"depending on context.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_CORE_UPDATER_BUILDBOT_URL:
|
||||
snprintf(s, len,
|
||||
"URL to core updater directory on the \n"
|
||||
"Libretro buildbot.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_BUILDBOT_ASSETS_URL:
|
||||
snprintf(s, len,
|
||||
"URL to assets updater directory on the \n"
|
||||
"Libretro buildbot.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE:
|
||||
snprintf(s, len,
|
||||
"After downloading, automatically extract \n"
|
||||
"archives that the downloads are contained \n"
|
||||
"inside.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
|
||||
snprintf(s, len,
|
||||
"Filter files being shown by supported extensions.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_NETPLAY_NICKNAME:
|
||||
snprintf(s, len,
|
||||
"The username of the person running RetroArch. \n"
|
||||
|
@ -89,7 +89,7 @@
|
||||
# loaded by the menu depending on context.
|
||||
# dynamic_wallpapers_directory =
|
||||
|
||||
# Thumbnails directory. To store thumbnail PNG files.
|
||||
# Thumbnails directory. To store thumbnail files.
|
||||
# thumbnails_directory =
|
||||
|
||||
# Sets start directory for menu config browser.
|
||||
@ -693,7 +693,7 @@
|
||||
# URL to assets update directory on buildbot.
|
||||
# core_updater_buildbot_assets_url = "http://buildbot.libretro.com/assets/"
|
||||
|
||||
# Automatically extract archives that the cores are contained in to the libretro cores directory.
|
||||
# After downloading, automatically extract archives that the downloads are contained inside.
|
||||
# core_updater_auto_extract_archive = true
|
||||
|
||||
#### Network
|
||||
|
Loading…
Reference in New Issue
Block a user