mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
Merge pull request #6520 from retro-wertz/patch-1
Fix false [ERROR] when closing content
This commit is contained in:
commit
2d2094575e
@ -1820,7 +1820,7 @@ void content_deinit(void)
|
||||
|
||||
RARCH_LOG("%s: %s.\n",
|
||||
msg_hash_to_str(MSG_REMOVING_TEMPORARY_CONTENT_FILE), path);
|
||||
if (!filestream_delete(path))
|
||||
if (filestream_delete(path) != 0)
|
||||
RARCH_ERR("%s: %s.\n",
|
||||
msg_hash_to_str(MSG_FAILED_TO_REMOVE_TEMPORARY_FILE),
|
||||
path);
|
||||
|
Loading…
x
Reference in New Issue
Block a user