summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMerry <git@mary.rs>2023-11-21 22:57:47 +0000
committerMerry <git@mary.rs>2023-11-21 22:57:47 +0000
commitb088a448cdc6ab66ea3a95fe40b158ab6030c2c2 (patch)
treed2afd7bce076844949ed5829dd19f46e64b9a4a1
parentc4f6c3b00be9e735444a8067b652f35a70268f4a (diff)
game_list_worker: Explicit caputure of 'this'
-rw-r--r--src/yuzu/game_list_worker.cpp2
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();
}