Browse Source
Add live reload for external content dirs
desktop only
Signed-off-by: crueter <crueter@eden-emu.dev>
pull/2862/head
crueter
6 days ago
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
1 changed files with
4 additions and
0 deletions
-
src/yuzu/game_list_worker.cpp
|
|
|
@ -510,6 +510,10 @@ void GameListWorker::run() { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
for (const std::string &dir : Settings::values.external_content_dirs) { |
|
|
|
watch_list << QString::fromStdString(dir); |
|
|
|
} |
|
|
|
|
|
|
|
RecordEvent([this](GameList* game_list) { game_list->DonePopulating(watch_list); }); |
|
|
|
processing_completed.Set(); |
|
|
|
} |