std::future_error on win32 when cancelling rom load

This commit is contained in:
flyinghead 2021-01-15 10:25:21 +01:00
parent 287836803d
commit 87812a7f82
1 changed files with 2 additions and 1 deletions

View File

@ -1301,5 +1301,6 @@ void dc_cancel_load()
void dc_get_load_status()
{
loading_done.get();
if (loading_done.valid())
loading_done.get();
}