mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Achievement Visibility Submenu - Text tweaks
+ removing gate from account error messages
This commit is contained in:
parent
31addc0a61
commit
fbb4d67f7c
2 changed files with 6 additions and 8 deletions
|
@ -1736,7 +1736,7 @@ static void rcheevos_fetch_game_data(void)
|
|||
const settings_t* settings = config_get_ptr();
|
||||
if (settings->bools.cheevos_verbose_enable)
|
||||
runloop_msg_queue_push(
|
||||
"RetroAchivements: Game could not be identified.",
|
||||
"RetroAchievements: Game could not be identified.",
|
||||
0, 3 * 60, false, NULL, MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_INFO);
|
||||
|
||||
CHEEVOS_LOG(RCHEEVOS_TAG "Game could not be identified\n");
|
||||
|
@ -2044,9 +2044,8 @@ bool rcheevos_load(const void *data)
|
|||
if (string_is_empty(settings->arrays.cheevos_username))
|
||||
{
|
||||
CHEEVOS_LOG(RCHEEVOS_TAG "Cannot login (no username)\n");
|
||||
if (settings->bools.cheevos_visibility_account)
|
||||
runloop_msg_queue_push("Missing RetroAchievements account information.", 0, 5 * 60, false, NULL,
|
||||
MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_ERROR);
|
||||
runloop_msg_queue_push("Missing RetroAchievements account information.", 0, 5 * 60, false, NULL,
|
||||
MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_ERROR);
|
||||
rcheevos_locals.game.id = 0;
|
||||
rcheevos_pause_hardcore();
|
||||
return false;
|
||||
|
@ -2134,8 +2133,7 @@ bool rcheevos_load(const void *data)
|
|||
{
|
||||
CHEEVOS_LOG(RCHEEVOS_TAG "Cannot login %s (no password or token)\n",
|
||||
settings->arrays.cheevos_username);
|
||||
if (settings->bools.cheevos_visibility_account)
|
||||
runloop_msg_queue_push("No password provided for RetroAchievements account", 0, 5 * 60, false, NULL,
|
||||
runloop_msg_queue_push("No password provided for RetroAchievements account", 0, 5 * 60, false, NULL,
|
||||
MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_ERROR);
|
||||
rcheevos_unload();
|
||||
return false;
|
||||
|
|
|
@ -6151,7 +6151,7 @@ MSG_HASH(
|
|||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_SUBLABEL_CHEEVOS_VISIBILITY_MASTERY,
|
||||
"Shows a notification when a game is mastered (all achievements unlocked)."
|
||||
"Shows a notification when all achievements for a game are unlocked."
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_CHEEVOS_CHALLENGE_INDICATORS,
|
||||
|
@ -6163,7 +6163,7 @@ MSG_HASH(
|
|||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_CHEEVOS_VISIBILITY_ACCOUNT,
|
||||
"Account/Login Messages"
|
||||
"Login Messages"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_SUBLABEL_CHEEVOS_VISIBILITY_ACCOUNT,
|
||||
|
|
Loading…
Add table
Reference in a new issue