From ad366ecdd0372a8bb6e547021463890029eb12f9 Mon Sep 17 00:00:00 2001 From: bicarus-dev <202771338+bicarus-dev@users.noreply.github.com> Date: Fri, 27 Mar 2026 18:46:08 -0700 Subject: [PATCH] update fatal crash message --- src/spice2x/util/logging.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/spice2x/util/logging.cpp b/src/spice2x/util/logging.cpp index 13a8f23..56e2c38 100644 --- a/src/spice2x/util/logging.cpp +++ b/src/spice2x/util/logging.cpp @@ -62,9 +62,9 @@ void show_popup_for_crash() { text += "Game has crashed.\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 += " * update spice2x to the latest version\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 += " * Update spice2x to the latest version\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 += "Press Enter, Esc, Alt+F4, or click OK to exit. Otherwise, game will close in 30 seconds."; show_popup(text); } @@ -76,9 +76,9 @@ void show_popup_for_fatal_error(std::string message) { text += message; text += "----------------------------------------------------------\n\n"; text += "Unsure what to do next?\n"; - text += " * update spice2x to the latest version\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 += " * Update spice2x to the latest version\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 += "Press Enter, Esc, Alt+F4, or click OK to exit. Otherwise, game will close in 30 seconds."; show_popup(text); } \ No newline at end of file