From 2afb56cdf4f21e67a60b25501a4cc128b6968775 Mon Sep 17 00:00:00 2001 From: Hubert Maier Date: Sun, 10 Nov 2019 15:26:53 +0100 Subject: AMIGAOS4: Increase stack cookie Just to be on the safe side. Right now the binary consumes roughly 700 000 bytes. Double that and add a a panic amount of roughly 50%, which leaves us at 2 MB.--- backends/platform/sdl/amigaos/amigaos-main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backends/platform') diff --git a/backends/platform/sdl/amigaos/amigaos-main.cpp b/backends/platform/sdl/amigaos/amigaos-main.cpp index d0990a63c9..9149085183 100644 --- a/backends/platform/sdl/amigaos/amigaos-main.cpp +++ b/backends/platform/sdl/amigaos/amigaos-main.cpp @@ -62,7 +62,7 @@ int main(int argc, char *argv[]) { } // Set up a stack cookie to avoid crashes from a stack set too low. - static const char *stack_cookie __attribute__((used)) = "$STACK: 1024000"; + static const char *stack_cookie __attribute__((used)) = "$STACK: 2048000"; // Create our OSystem instance. g_system = new OSystem_AmigaOS(); -- cgit v1.2.3