From 30977a260336a60a5cf9a582866aa083f1df885d Mon Sep 17 00:00:00 2001 From: LibretroAdmin Date: Sun, 21 Aug 2022 20:48:28 +0200 Subject: [PATCH] Enable savestate file compression by default for UWP/Xbox - got told there are no more issues with it --- config.def.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index 3b8eae59cc..a676ba0517 100644 --- a/config.def.h +++ b/config.def.h @@ -1288,8 +1288,7 @@ static const bool savestate_thumbnail_enable = false; /* When creating save state files, compress * written data */ -#if defined(__WINRT__) || defined(WINAPI_FAMILY) && WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP -/* TODO/FIXME Apparently this is an issue on UWP for now, so disable it for now */ +#if defined(WINAPI_FAMILY) && WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP #define DEFAULT_SAVESTATE_FILE_COMPRESSION false #else #define DEFAULT_SAVESTATE_FILE_COMPRESSION true