Loading Screen: rethrow exception if worker thread creation fails

This commit is contained in:
Charles Dang 2018-04-18 15:37:39 +11:00
parent baab5a8156
commit c085c380f6

View file

@ -123,6 +123,7 @@ void loading_screen::pre_show(window& window)
});
} catch(const std::system_error& e) {
ERR_LS << "Failed to create worker thread: " << e.what() << "\n";
throw;
}
}