quiet warnings about possibly-uninitialized variable usage

This commit is contained in:
Shawn Hoffman
2017-06-07 04:17:34 -07:00
parent e1a3e41bf3
commit f730b775b6
4 changed files with 5 additions and 5 deletions

View File

@ -154,7 +154,7 @@ void MemoryCheckDlg::OnOK(wxCommandEvent& event)
bool Log = m_radioLog->GetValue() || m_radioBreakLog->GetValue();
bool Break = m_radioBreak->GetValue() || m_radioBreakLog->GetValue();
u32 StartAddress, EndAddress;
u32 StartAddress = UINT32_MAX, EndAddress = 0;
bool EndAddressOK =
EndAddressString.Len() && AsciiToHex(WxStrToStr(EndAddressString), EndAddress);