From c0a5bf5829ec1a6d68e8800d5c5e0571db4041d1 Mon Sep 17 00:00:00 2001 From: Paul Huff Date: Tue, 17 May 2022 22:35:28 -0600 Subject: [PATCH] If MAX_UPDATES isn't set to 512 to match the value in t4kcommon, then the blits structs will be the wrong size and the TransWipe will cause a core dump --- src/titlescreen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/titlescreen.h b/src/titlescreen.h index 478b935..40fe1fa 100644 --- a/src/titlescreen.h +++ b/src/titlescreen.h @@ -62,7 +62,7 @@ along with this program. If not, see . #define MAX_WORD_SIZE 8 //MAX_UPDATES needed for TransWipe() and friends: -#define MAX_UPDATES 180 +#define MAX_UPDATES 512 #define WAIT_MS 2500 #define FRAMES_PER_SEC 50