Show executable path in failed to start game process messagebox

This commit is contained in:
mkrsym1 2023-08-12 17:20:58 +03:00
parent 7693e63619
commit ba6a054ec3

View File

@ -88,7 +88,7 @@ BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID reserved) {
&pi &pi
)) { )) {
wchar_t message[1024]; wchar_t message[1024];
wsprintfW(message, L"Failed to start game process: %ld", GetLastError()); wsprintfW(message, L"Failed to start game process: %ld\nGame executable path: '%ls'", GetLastError(), targetExe);
MessageBoxW(NULL, message, J_MB_TITLE, MB_OK | MB_ICONERROR); MessageBoxW(NULL, message, J_MB_TITLE, MB_OK | MB_ICONERROR);
exit(1); exit(1);