mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-21 03:21:28 +00:00
Fix fatal error formatting
Based on this patch: https://aur.archlinux.org/cgit/aur.git/tree/0002-fix-format-security-error.patch?h=gzdoom
This commit is contained in:
parent
af8838d45a
commit
22690bbb76
1 changed files with 1 additions and 1 deletions
|
@ -1072,7 +1072,7 @@ void I_NetError(const char* error)
|
|||
{
|
||||
doomcom.numnodes = 0;
|
||||
StartWindow->NetClose();
|
||||
I_FatalError(error);
|
||||
I_FatalError("%s", error);
|
||||
}
|
||||
|
||||
// todo: later these must be dispatched by the main menu, not the start screen.
|
||||
|
|
Loading…
Reference in a new issue