Merge pull request #6762 from lioncash/condition

DolphinQt/MemoryWidget: Fix dead condition in FindValue()
This commit is contained in:
Léo Lam 2018-05-06 12:01:24 +02:00 committed by GitHub
commit 27f6274fc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 6 deletions

View File

@ -507,7 +507,10 @@ void MemoryWidget::FindValue(bool next)
std::vector<u8> search_for = GetValueData();
if (search_for.empty())
{
m_result_label->setText(tr("No Value Given"));
return;
}
const u8* ram_ptr = nullptr;
std::size_t ram_size = 0;
@ -531,12 +534,6 @@ void MemoryWidget::FindValue(bool next)
return;
}
if (search_for.empty())
{
m_result_label->setText(tr("No Value Given"));
return;
}
u32 addr = 0;
if (!m_search_address->text().isEmpty())