Debug fixes

This commit is contained in:
Eladash 2023-07-09 08:45:15 +03:00 committed by Elad Ashkenazi
parent 050b8fa7df
commit 17d8f2884e
3 changed files with 31 additions and 9 deletions

View file

@ -110,11 +110,7 @@ std::string dump_useful_thread_info()
if (auto cpu = get_current_cpu_thread())
{
// Wrap it to disable some internal exceptions when printing (not thrown on main thread)
Emu.BlockingCallFromMainThread([&]()
{
cpu->dump_all(result);
});
cpu->dump_all(result);
}
return result;