mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 13:01:47 +00:00
- fixed missing command line in crash reports
https://forum.zdoom.org/viewtopic.php?t=64149
This commit is contained in:
parent
2886f22b8f
commit
025e50219f
1 changed files with 1 additions and 1 deletions
|
@ -1111,7 +1111,7 @@ void DoomSpecificInfo (char *buffer, size_t bufflen)
|
|||
int i;
|
||||
|
||||
buffer += mysnprintf (buffer, buffend - buffer, GAMENAME " version %s (%s)", GetVersionString(), GetGitHash());
|
||||
buffer += mysnprintf (buffer, buffend - buffer, "\r\nCommand line: %s\r\n", GetCommandLine());
|
||||
buffer += mysnprintf (buffer, buffend - buffer, "\r\nCommand line: %s\r\n", GetCommandLineA());
|
||||
|
||||
for (i = 0; (arg = Wads.GetWadName (i)) != NULL; ++i)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue