Skip to content

Commit

Permalink
update error message for rust crash
Browse files Browse the repository at this point in the history
  • Loading branch information
JLaferri committed Aug 11, 2023
1 parent ed2e99b commit ac5de99
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/renderer/lib/dolphin/handleDolphinExitCode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ const handleWindowsExitCode = (exitCode: number): string | null => {
return null;
}
case 0xc0000135:
case 0xc0000409:
case 0xc000007b: {
return "Required DLLs for launching Dolphin are missing. Check the Help section in the settings page to fix this issue.";
}
case 0xc0000409: {
return 'Dolphin has crashed. Please go to the Help section of the settings page and click "Copy logs" and paste them in the Slippi Discord.';
}
case 0xc0000005: {
return "Try a different video backend in Dolphin. If the issue persists, install the latest Windows update available and then restart your computer.";
}
Expand Down

0 comments on commit ac5de99

Please sign in to comment.