mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-02-06 09:39:55 +00:00
Merge pull request #755 from Syphurith/patch-AutoPause
Typo fix for Auto-Pause GUI.
This commit is contained in:
commit
4d88cfed95
@ -287,16 +287,14 @@ void AutoPauseSettingsDialog::OnUpdateValue(wxCommandEvent& event)
|
||||
|
||||
m_entry_convert.clear();
|
||||
m_entry_convert.str("");
|
||||
m_entry_convert << "Currently it gets an id of \""
|
||||
<< std::hex << std::setw(8) << std::setfill('0') << m_entry;
|
||||
m_entry_convert << std::hex << /*std::setw(8) << std::setfill('0') <<*/ m_entry;
|
||||
m_entry_convert.clear();
|
||||
m_entry_convert << "\".";
|
||||
if (m_entry_convert.str() == m_id->GetValue())
|
||||
{
|
||||
m_entry_convert << " SAME.";
|
||||
m_current_converted->SetLabelText("Currently it gets an id of \"" + m_entry_convert.str() + "\" - SAME.");
|
||||
}
|
||||
else {
|
||||
m_current_converted->SetLabelText("Currently it gets an id of \"" + m_entry_convert.str() + "\".");
|
||||
}
|
||||
|
||||
m_current_converted->SetLabelText(m_entry_convert.str());
|
||||
|
||||
event.Skip();
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user