1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-23 12:36:34 -05:00

game_list_worker: Explicit caputure of 'this'

This commit is contained in:
Merry
2023-11-21 22:57:47 +00:00
parent c4f6c3b00b
commit b088a448cd

View File

@@ -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();
}