From 50f6053ecf00b47f1a29d68be69666d853b188c8 Mon Sep 17 00:00:00 2001 From: Sryder Date: Sat, 7 Jul 2018 22:10:26 +0100 Subject: [PATCH] 22 needs to be added to these char arrays to account for zone title being a settable string --- src/y_inter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/y_inter.c b/src/y_inter.c index cd56b346..3efce983 100644 --- a/src/y_inter.c +++ b/src/y_inter.c @@ -117,7 +117,7 @@ typedef union patch_t *blueflag; patch_t *redflag; // int_ctf uses this struct too. INT32 numplayers; // Number of players being displayed - char levelstring[40]; // holds levelnames up to 32 characters + char levelstring[62]; // holds levelnames up to 32 characters // SRB2kart int increase[MAXPLAYERS]; //how much did the score increase by? int time[MAXPLAYERS]; //Tournament Time @@ -172,7 +172,7 @@ static void Y_UnloadData(void); // Level images typedef struct { - char str[40]; + char str[62]; patch_t *pic; } y_votelvlinfo;