Qt: Fix directory setting changes

This commit is contained in:
Connor McLaughlin
2022-07-23 01:28:19 +10:00
parent 78bddd7fe9
commit a5f5be1a60
9 changed files with 45 additions and 16 deletions

View File

@ -529,6 +529,17 @@ void EmuThread::reloadGameSettings(bool display_osd_messages /* = false */)
System::ReloadGameSettings(display_osd_messages);
}
void EmuThread::updateEmuFolders()
{
if (!isOnThread())
{
QMetaObject::invokeMethod(this, &EmuThread::updateEmuFolders, Qt::QueuedConnection);
return;
}
EmuFolders::Update();
}
void EmuThread::startFullscreenUI()
{
if (!isOnThread())