From 136c7f1d5ccba9dabde1aa7b3343df2e1bdd6228 Mon Sep 17 00:00:00 2001 From: Mathieu Westphal Date: Sun, 30 Apr 2023 19:09:17 +0200 Subject: [PATCH] Fix an issue on windows where exception error are not visible --- application/main.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/application/main.cxx b/application/main.cxx index 895d6d668b..c72acd2b82 100644 --- a/application/main.cxx +++ b/application/main.cxx @@ -21,6 +21,7 @@ int main(int argc, char** argv) { f3d::log::error("F3D encountered an unexpected exception:"); f3d::log::error(ex.what()); + f3d::log::waitForUser(); exit(EXIT_FAILURE); }