diff --git a/intl/msg_hash_us.c b/intl/msg_hash_us.c index f808d2c46f..8b87d0e285 100644 --- a/intl/msg_hash_us.c +++ b/intl/msg_hash_us.c @@ -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" diff --git a/retroarch.cfg b/retroarch.cfg index 692d53b0e9..ee8f4b1d2f 100644 --- a/retroarch.cfg +++ b/retroarch.cfg @@ -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