Add missing I_ReinitAfterError in non-direct-DD mode

This commit is contained in:
Lephenixnoir 2021-09-10 21:40:57 +02:00
parent a3ccabfa62
commit 4aa4cb1b99
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 4 additions and 1 deletions

View File

@ -210,8 +210,11 @@ void I_ShutdownGraphics(void)
{
}
void I_SetWindowAfterError(void)
void I_ReinitAfterError(void)
{
/* Redraw status bar over help message */
extern boolean st_firsttime;
st_firsttime = true;
}
#endif