Skip to content

Commit

Permalink
v2.5.3-luajit: Fixed uploader file name
Browse files Browse the repository at this point in the history
  • Loading branch information
MCJack123 committed Feb 21, 2021
1 parent 8f1c9fc commit 49123e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/win.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ void uploadCrashDumps() {
WIN32_FIND_DATAW find;
wchar_t path[32767];
ExpandEnvironmentStringsW(L"%LOCALAPPDATA%\\CrashDumps\\", path, 32767);
std::wstring searchpath = std::wstring(path) + L"CraftOS-PC.exe.*.dmp";
std::wstring searchpath = std::wstring(path) + L"CraftOS-PC-Accelerated.exe.*.dmp";
const HANDLE h = FindFirstFileW(searchpath.c_str(), &find);
if (h != INVALID_HANDLE_VALUE) {
do {
Expand Down

0 comments on commit 49123e4

Please sign in to comment.