Fix cellGameContentErrorDialog freeze

This commit is contained in:
Jake 2017-04-25 22:05:48 -05:00 committed by Ivan
parent ac58953276
commit c8252d2b28

View File

@ -791,7 +791,10 @@ error_code cellGameContentErrorDialog(s32 type, s32 errNeedSizeKB, vm::cptr<char
result = true;
};
dlg->Create(errorMsg);
Emu.CallAfter([&]()
{
dlg->Create(errorMsg);
});
while (!result)
{