update fatal crash message

This commit is contained in:
bicarus-dev
2026-03-27 18:46:08 -07:00
parent 22cb4d689c
commit ad366ecdd0
+6 -6
View File
@@ -62,9 +62,9 @@ void show_popup_for_crash() {
text += "Game has crashed.\n\n"; text += "Game has crashed.\n\n";
text += "Check log.txt and look for error messages near the end of file.\n\n"; text += "Check log.txt and look for error messages near the end of file.\n\n";
text += "Unsure what to do next?\n"; text += "Unsure what to do next?\n";
text += " * update spice2x to the latest version\n"; text += " * Update spice2x to the latest version\n";
text += " * check the FAQ on spice2x github wiki\n"; text += " * Check the FAQ on spice2x github wiki\n";
text += " * do NOT screenshot this, instead, share log.txt with someone and ask for help\n\n"; text += " * Do NOT screenshot this, instead, share log.txt with someone and ask for help\n\n";
text += "Press Enter, Esc, Alt+F4, or click OK to exit. Otherwise, game will close in 30 seconds."; text += "Press Enter, Esc, Alt+F4, or click OK to exit. Otherwise, game will close in 30 seconds.";
show_popup(text); show_popup(text);
} }
@@ -76,9 +76,9 @@ void show_popup_for_fatal_error(std::string message) {
text += message; text += message;
text += "----------------------------------------------------------\n\n"; text += "----------------------------------------------------------\n\n";
text += "Unsure what to do next?\n"; text += "Unsure what to do next?\n";
text += " * update spice2x to the latest version\n"; text += " * Update spice2x to the latest version\n";
text += " * check the FAQ on spice2x github wiki\n"; text += " * Check the FAQ on spice2x github wiki\n";
text += " * do NOT screenshot this, instead, share log.txt with someone and ask for help\n\n"; text += " * Do NOT screenshot this, instead, share log.txt with someone and ask for help\n\n";
text += "Press Enter, Esc, Alt+F4, or click OK to exit. Otherwise, game will close in 30 seconds."; text += "Press Enter, Esc, Alt+F4, or click OK to exit. Otherwise, game will close in 30 seconds.";
show_popup(text); show_popup(text);
} }