mirror of
https://github.com/libretro/RetroArch
synced 2025-03-02 19:13:34 +00:00
Merge pull request #8691 from meleu/patch-5
use new cheevos implementation as default
This commit is contained in:
commit
2ed4fbf2f7
@ -1407,11 +1407,6 @@ found:
|
||||
const rcheevos_cheevo_t* end = cheevo + rcheevos_locals.patchdata.core_count;
|
||||
int number_of_unlocked = rcheevos_locals.patchdata.core_count;
|
||||
|
||||
/* RCHEEVOS TODO: remove this msg */
|
||||
snprintf(msg, sizeof(msg), "cheevos: using the new implementation.");
|
||||
msg[sizeof(msg) - 1] = 0;
|
||||
runloop_msg_queue_push(msg, 0, 3 * 60, false, NULL, MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_INFO);
|
||||
|
||||
if (coro->settings->bools.cheevos_hardcore_mode_enable && !rcheevos_hardcore_paused)
|
||||
mode = RCHEEVOS_ACTIVE_HARDCORE;
|
||||
|
||||
|
@ -2887,6 +2887,10 @@ found:
|
||||
const cheevo_t* end = cheevo + cheevos_locals.core.count;
|
||||
int number_of_unlocked = cheevos_locals.core.count;
|
||||
|
||||
snprintf(msg, sizeof(msg), "cheevos: using the old implementation.");
|
||||
msg[sizeof(msg) - 1] = 0;
|
||||
runloop_msg_queue_push(msg, 0, 3 * 60, false, NULL, MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_INFO);
|
||||
|
||||
if (coro->settings->bools.cheevos_hardcore_mode_enable && !cheevos_hardcore_paused)
|
||||
mode = CHEEVOS_ACTIVE_HARDCORE;
|
||||
|
||||
|
@ -1537,7 +1537,7 @@ static struct config_bool_setting *populate_settings_bool(settings_t *settings,
|
||||
SETTING_BOOL("cheevos_leaderboards_enable", &settings->bools.cheevos_leaderboards_enable, true, false, false);
|
||||
SETTING_BOOL("cheevos_verbose_enable", &settings->bools.cheevos_verbose_enable, true, false, false);
|
||||
SETTING_BOOL("cheevos_auto_screenshot", &settings->bools.cheevos_auto_screenshot, true, false, false);
|
||||
SETTING_BOOL("cheevos_rcheevos_enable", &settings->bools.cheevos_rcheevos_enable, true, false, false);
|
||||
SETTING_BOOL("cheevos_rcheevos_enable", &settings->bools.cheevos_rcheevos_enable, true, true, false);
|
||||
/* RCHEEVOS TODO: remove line above */
|
||||
#ifdef HAVE_XMB
|
||||
SETTING_BOOL("cheevos_badges_enable", &settings->bools.cheevos_badges_enable, true, false, false);
|
||||
|
Loading…
x
Reference in New Issue
Block a user