Crash log: Windows: Fix screenshot filename in crash dialog box

This commit is contained in:
Jonathan G Rennison
2023-08-27 22:07:28 +01:00
parent 9dc0f0c95c
commit 40f9b61b4c

View File

@@ -1065,7 +1065,7 @@ static INT_PTR CALLBACK CrashDialogFunc(HWND wnd, UINT msg, WPARAM wParam, LPARA
}
if (CrashLogWindows::current->screenshot_filename[0] != 0) {
append_newline();
append_str(CrashLogWindows::current->crashdump_filename);
append_str(CrashLogWindows::current->screenshot_filename);
}
SetDlgItemText(wnd, 10, crash_desc_buf);