diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-03-22 22:22:19 +1100 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-03-22 22:22:19 +1100 |
commit | 5da4b1a4e3493427567583c90c4cbe03c5d3979c (patch) | |
tree | 92f58940b86abeb2c203a9bb31d8bb3fd77fad26 /source/application/StarMainApplication_sdl.cpp | |
parent | 4d841526091a3ede85bf244601b827f08ddf119e (diff) |
Make it clearer when the base Starbound assets are missing
until the installer can locate the user's original Starbound assets
Diffstat (limited to 'source/application/StarMainApplication_sdl.cpp')
-rw-r--r-- | source/application/StarMainApplication_sdl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/application/StarMainApplication_sdl.cpp b/source/application/StarMainApplication_sdl.cpp index 1b5a1f4..6053613 100644 --- a/source/application/StarMainApplication_sdl.cpp +++ b/source/application/StarMainApplication_sdl.cpp @@ -457,7 +457,8 @@ public: Thread::sleepPrecise(spareMilliseconds); } } catch (std::exception const& e) { - Logger::error("Application: exception thrown, shutting down: {}", outputException(e, true)); + Logger::error("Application: exception thrown!"); + fatalException(e, true); } try { |