From 4cc414dbd71f0f51f25619fb380729b750299843 Mon Sep 17 00:00:00 2001 From: Wolfgang Thaller Date: Tue, 12 Nov 2019 00:01:27 +0100 Subject: [PATCH] Carbon requires certain 'SIZE' flags to be set --- Samples/Dialog/dialog.r | 2 +- libretro/RetroCarbonAPPL.r | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Samples/Dialog/dialog.r b/Samples/Dialog/dialog.r index 745a8ce408..092eef578d 100644 --- a/Samples/Dialog/dialog.r +++ b/Samples/Dialog/dialog.r @@ -62,7 +62,7 @@ resource 'SIZE' (-1) { acceptSuspendResumeEvents, reserved, canBackground, - needsActivateOnFGSwitch, + doesActivateOnFGSwitch, backgroundAndForeground, dontGetFrontClicks, ignoreChildDiedEvents, diff --git a/libretro/RetroCarbonAPPL.r b/libretro/RetroCarbonAPPL.r index a44ae6a38b..d7a3a52230 100644 --- a/libretro/RetroCarbonAPPL.r +++ b/libretro/RetroCarbonAPPL.r @@ -22,10 +22,10 @@ resource 'carb' (0) { resource 'SIZE' (-1) { reserved, - ignoreSuspendResumeEvents, + acceptSuspendResumeEvents, reserved, - cannotBackground, - needsActivateOnFGSwitch, + canBackground, + doesActivateOnFGSwitch, backgroundAndForeground, dontGetFrontClicks, ignoreChildDiedEvents,