From 152af876550ec63bac9d7aa27b1994268c80f878 Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Wed, 28 Jun 2023 00:20:22 +1000 Subject: Fix broken regex, make game timestep non-const --- source/client/StarClientApplication.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'source/client/StarClientApplication.cpp') diff --git a/source/client/StarClientApplication.cpp b/source/client/StarClientApplication.cpp index f347cd5..3c2cc80 100644 --- a/source/client/StarClientApplication.cpp +++ b/source/client/StarClientApplication.cpp @@ -558,6 +558,7 @@ void ClientApplication::setError(String const& error) { void ClientApplication::setError(String const& error, std::exception const& e) { Logger::error("{}\n{}", error, outputException(e, true)); m_errorScreen->setMessage(strf("{}\n{}", error, outputException(e, false))); + changeState(MainAppState::Title); } void ClientApplication::updateMods() { -- cgit v1.2.3