mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-26 00:40:56 +00:00
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
This commit is contained in:
parent
c486256e01
commit
1e8176480d
1 changed files with 3 additions and 3 deletions
|
@ -1312,7 +1312,7 @@ static void ShowFileText(const char *name)
|
||||||
typedef struct helppage_
|
typedef struct helppage_
|
||||||
{
|
{
|
||||||
int32_t numlines;
|
int32_t numlines;
|
||||||
char line[][80]; // C99 flexible array member
|
char line[1][80]; // C99 flexible array member
|
||||||
} helppage_t;
|
} helppage_t;
|
||||||
|
|
||||||
static helppage_t **helppage=NULL;
|
static helppage_t **helppage=NULL;
|
||||||
|
@ -9832,7 +9832,7 @@ int32_t ExtInit(void)
|
||||||
// will hopefully be the same file
|
// will hopefully be the same file
|
||||||
pathsearchmode_oninit = pathsearchmode;
|
pathsearchmode_oninit = pathsearchmode;
|
||||||
|
|
||||||
G_ExtPreStartupWindow();
|
G_ScanGroups();
|
||||||
|
|
||||||
signal(SIGINT, m32script_interrupt_handler);
|
signal(SIGINT, m32script_interrupt_handler);
|
||||||
|
|
||||||
|
@ -9841,7 +9841,7 @@ int32_t ExtInit(void)
|
||||||
|
|
||||||
int32_t ExtPostStartupWindow(void)
|
int32_t ExtPostStartupWindow(void)
|
||||||
{
|
{
|
||||||
G_ExtPostStartupWindow(!NoAutoLoad);
|
G_LoadGroups(!NoAutoLoad);
|
||||||
|
|
||||||
if (!usecwd)
|
if (!usecwd)
|
||||||
G_CleanupSearchPaths();
|
G_CleanupSearchPaths();
|
||||||
|
|
Loading…
Reference in a new issue