diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-11-21 22:17:42 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-21 22:17:42 -0500 |
| commit | 91c12db07098625756338e682a4d300a27d7978c (patch) | |
| tree | d2afd7bce076844949ed5829dd19f46e64b9a4a1 /src/yuzu/game_list_worker.cpp | |
| parent | cddb28cf26cfded4f1e4a4933f8d0b11ae812e1a (diff) | |
| parent | b088a448cdc6ab66ea3a95fe40b158ab6030c2c2 (diff) | |
Merge pull request #12123 from merryhime/explicit-this
Explicit this
Diffstat (limited to 'src/yuzu/game_list_worker.cpp')
| -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() { } } - RecordEvent([=](GameList* game_list) { game_list->DonePopulating(watch_list); }); + RecordEvent([this](GameList* game_list) { game_list->DonePopulating(watch_list); }); processing_completed.Set(); } |
