diff options
| author | 2023-11-21 22:57:47 +0000 | |
|---|---|---|
| committer | 2023-11-21 22:57:47 +0000 | |
| commit | b088a448cdc6ab66ea3a95fe40b158ab6030c2c2 (patch) | |
| tree | d2afd7bce076844949ed5829dd19f46e64b9a4a1 /src | |
| parent | shared_widget: Explicit capture of 'this' (diff) | |
| download | yuzu-b088a448cdc6ab66ea3a95fe40b158ab6030c2c2.tar.gz yuzu-b088a448cdc6ab66ea3a95fe40b158ab6030c2c2.tar.xz yuzu-b088a448cdc6ab66ea3a95fe40b158ab6030c2c2.zip | |
game_list_worker: Explicit caputure of 'this'
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/game_list_worker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/game_list_worker.cpp b/src/yuzu/game_list_worker.cpp index 69be21027..307eac02d 100644 --- a/src/yuzu/game_list_worker.cpp +++ b/src/yuzu/game_list_worker.cpp | |||
| @@ -479,6 +479,6 @@ void GameListWorker::run() { | |||
| 479 | } | 479 | } |
| 480 | } | 480 | } |
| 481 | 481 | ||
| 482 | RecordEvent([=](GameList* game_list) { game_list->DonePopulating(watch_list); }); | 482 | RecordEvent([this](GameList* game_list) { game_list->DonePopulating(watch_list); }); |
| 483 | processing_completed.Set(); | 483 | processing_completed.Set(); |
| 484 | } | 484 | } |