Misc: More warning fixes

This commit is contained in:
Connor McLaughlin
2022-08-10 14:33:20 +10:00
parent 0f198cbe3a
commit 916900be5d
11 changed files with 18 additions and 18 deletions

View File

@ -552,7 +552,7 @@ void CheatManagerDialog::addCodeClicked()
group_item->setExpanded(true);
Host::RunOnCPUThread(
[this, &new_code]() {
[&new_code]() {
System::GetCheatList()->AddCode(std::move(new_code));
System::SaveCheatList();
},