From cec33cbc495a917a4b9418c80b24d3ae7ba91c50 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 10 Jun 2020 22:44:45 +0200 Subject: [PATCH] Disable savestate compression for UWP for now - apparently doesn't work --- config.def.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config.def.h b/config.def.h index 8378602635..6de40d621d 100644 --- a/config.def.h +++ b/config.def.h @@ -930,7 +930,12 @@ 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 */ +#define DEFAULT_SAVESTATE_FILE_COMPRESSION false +#else #define DEFAULT_SAVESTATE_FILE_COMPRESSION true +#endif /* Slowmotion ratio. */ #define DEFAULT_SLOWMOTION_RATIO 3.0