From 6ed8b9091c4abfec82f8c50be85ade79fae4ffb0 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sat, 21 Sep 2024 16:32:13 -0400 Subject: Misc: Compiling under SDL2 uncovered a few issues unrelated to SDL itself Change-Id: I625d5dd02d3f70bc6484a8641eafdaf13812f4a7 --- firmware/asm/thread.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'firmware/asm/thread.h') diff --git a/firmware/asm/thread.h b/firmware/asm/thread.h index 5372be73ab..771338b406 100644 --- a/firmware/asm/thread.h +++ b/firmware/asm/thread.h @@ -46,7 +46,9 @@ struct regs * give a decent amount of space and hope for the best... * FIXME: this isn't a great solution. */ #undef MINSIGSTKSZ - #define MINSIGSTKSZ 16384 + #endif + #ifndef MINSIGSTKSZ + #define MINSIGSTKSZ 16384 #endif /* MINSIGSTKSZ for the OS to deliver the signal + 0x3000 for us */ #define DEFAULT_STACK_SIZE (MINSIGSTKSZ+0x3000) /* Bytes */ -- cgit v1.2.3