mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
ensure hardcore remains disabled through load process
This commit is contained in:
parent
a535cd5d59
commit
ba1d48fb6a
@ -954,6 +954,11 @@ static void task_load_handler(retro_task_t *task)
|
|||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef HAVE_CHEEVOS
|
||||||
|
if (rcheevos_hardcore_active())
|
||||||
|
task_set_cancelled(task, true);
|
||||||
|
#endif
|
||||||
|
|
||||||
remaining = MIN(state->size - state->bytes_read, SAVE_STATE_CHUNK);
|
remaining = MIN(state->size - state->bytes_read, SAVE_STATE_CHUNK);
|
||||||
bytes_read = intfstream_read(state->file,
|
bytes_read = intfstream_read(state->file,
|
||||||
(uint8_t*)state->data + state->bytes_read, remaining);
|
(uint8_t*)state->data + state->bytes_read, remaining);
|
||||||
@ -1133,6 +1138,11 @@ static void content_load_state_cb(retro_task_t *task,
|
|||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
bool block_sram_overwrite = settings->bools.block_sram_overwrite;
|
bool block_sram_overwrite = settings->bools.block_sram_overwrite;
|
||||||
|
|
||||||
|
#ifdef HAVE_CHEEVOS
|
||||||
|
if (rcheevos_hardcore_active())
|
||||||
|
goto error;
|
||||||
|
#endif
|
||||||
|
|
||||||
RARCH_LOG("[State]: %s \"%s\", %u %s.\n",
|
RARCH_LOG("[State]: %s \"%s\", %u %s.\n",
|
||||||
msg_hash_to_str(MSG_LOADING_STATE),
|
msg_hash_to_str(MSG_LOADING_STATE),
|
||||||
load_data->path,
|
load_data->path,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user