mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
Merge pull request #12404 from lioncash/guard
CheatSearchWidget: Make use of CPUThreadGuard parameter in UpdateTableRows()
This commit is contained in:
commit
8c99198251
@ -388,15 +388,10 @@ bool CheatSearchWidget::UpdateTableRows(const Core::CPUThreadGuard& guard, const
|
|||||||
{
|
{
|
||||||
const bool update_status_text = source == UpdateSource::User;
|
const bool update_status_text = source == UpdateSource::User;
|
||||||
|
|
||||||
std::unique_ptr<Cheats::CheatSearchSessionBase> tmp =
|
auto tmp = m_session->ClonePartial(begin_index, end_index);
|
||||||
m_session->ClonePartial(begin_index, end_index);
|
|
||||||
tmp->SetFilterType(Cheats::FilterType::DoNotFilter);
|
tmp->SetFilterType(Cheats::FilterType::DoNotFilter);
|
||||||
|
|
||||||
const Cheats::SearchErrorCode error_code = [&tmp] {
|
const Cheats::SearchErrorCode error_code = tmp->RunSearch(guard);
|
||||||
Core::CPUThreadGuard guard(Core::System::GetInstance());
|
|
||||||
return tmp->RunSearch(guard);
|
|
||||||
}();
|
|
||||||
|
|
||||||
if (error_code != Cheats::SearchErrorCode::Success)
|
if (error_code != Cheats::SearchErrorCode::Success)
|
||||||
{
|
{
|
||||||
if (update_status_text)
|
if (update_status_text)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user