Fixed CVIdeo::quit being swallowed in invoked_function_data::call

This commit is contained in:
Charles Dang 2018-05-27 22:20:51 +11:00
parent 5588588b55
commit 8ecbed0205

View file

@ -65,6 +65,7 @@ struct invoked_function_data
f();
} catch(const CVideo::quit&) {
// Handle this exception in the main thread.
throw;
} catch(...) {
thrown_exception = std::current_exception();
}