diff options
Diffstat (limited to 'src/strife')
-rw-r--r-- | src/strife/d_main.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/strife/d_main.c b/src/strife/d_main.c index 35d2c908..186ba28b 100644 --- a/src/strife/d_main.c +++ b/src/strife/d_main.c @@ -1285,6 +1285,11 @@ void D_IntroTick(void) // //============================================================================= +static void G_CheckDemoStatusAtExit (void) +{ + G_CheckDemoStatus(); +} + // // D_DoomMain // @@ -1634,7 +1639,7 @@ void D_DoomMain (void) printf("Playing demo %s.\n", file); } - I_AtExit((atexit_func_t) G_CheckDemoStatus, true); + I_AtExit(G_CheckDemoStatusAtExit, true); // Generate the WAD hash table. Speed things up a bit. |