From 1e8176480dc0a76b9fa2458362383742df335d9f Mon Sep 17 00:00:00 2001 From: terminx Date: Wed, 11 Feb 2015 05:22:38 +0000 Subject: [PATCH] Forgotten changes from a previous commit that renamed functions. DONT_BUILD. git-svn-id: https://svn.eduke32.com/eduke32@4995 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/astub.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/polymer/eduke32/source/astub.c b/polymer/eduke32/source/astub.c index 59b77fb10..2e7741765 100644 --- a/polymer/eduke32/source/astub.c +++ b/polymer/eduke32/source/astub.c @@ -1312,7 +1312,7 @@ static void ShowFileText(const char *name) typedef struct helppage_ { int32_t numlines; - char line[][80]; // C99 flexible array member + char line[1][80]; // C99 flexible array member } helppage_t; static helppage_t **helppage=NULL; @@ -9832,7 +9832,7 @@ int32_t ExtInit(void) // will hopefully be the same file pathsearchmode_oninit = pathsearchmode; - G_ExtPreStartupWindow(); + G_ScanGroups(); signal(SIGINT, m32script_interrupt_handler); @@ -9841,7 +9841,7 @@ int32_t ExtInit(void) int32_t ExtPostStartupWindow(void) { - G_ExtPostStartupWindow(!NoAutoLoad); + G_LoadGroups(!NoAutoLoad); if (!usecwd) G_CleanupSearchPaths();