Compilation fix

This commit is contained in:
Nekotekina 2014-12-25 23:30:34 +03:00
parent 7613d749ec
commit c305949435
2 changed files with 10 additions and 3 deletions

View file

@ -302,3 +302,8 @@ void waiter_map_t::notify(u64 signal_id)
}
}
}
bool squeue_test_exit(const volatile bool* do_exit)
{
return Emu.IsStopped() || (do_exit && *do_exit);
}