From b6ee86a8f36a6a1b019b3082249f6c885fe16861 Mon Sep 17 00:00:00 2001 From: terminx Date: Tue, 6 Aug 2013 23:52:04 +0000 Subject: [PATCH] Bump MAXSYMBOLS to 512. This was probably the cause for the savestate and restorestate debug commands not being registered with the OSD at startup. git-svn-id: https://svn.eduke32.com/eduke32@3984 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/build/src/osd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polymer/eduke32/build/src/osd.c b/polymer/eduke32/build/src/osd.c index 81560fef3..bb9e87902 100644 --- a/polymer/eduke32/build/src/osd.c +++ b/polymer/eduke32/build/src/osd.c @@ -97,7 +97,7 @@ static int32_t osdtextpal=0; /* static int32_t osdcursorshade=0; static int32_t osdcursorpal=0; */ -#define MAXSYMBOLS 256 +#define MAXSYMBOLS 512 static symbol_t *osdsymbptrs[MAXSYMBOLS]; static int32_t osdnumsymbols = 0;