mirror of https://github.com/PCSX2/pcsx2.git
misc: fix codacy warnings
This commit is contained in:
parent
23c0b0f7b1
commit
8d56332993
|
@ -862,8 +862,8 @@ ScopedCoreThreadPause::~ScopedCoreThreadPause()
|
|||
}
|
||||
|
||||
ScopedCoreThreadPopup::ScopedCoreThreadPopup()
|
||||
: m_scoped_core(std::unique_ptr<BaseScopedCoreThread>(new ScopedCoreThreadPause()))
|
||||
{
|
||||
m_scoped_core = std::unique_ptr<BaseScopedCoreThread>(new ScopedCoreThreadPause());
|
||||
};
|
||||
|
||||
void ScopedCoreThreadPopup::AllowResume()
|
||||
|
|
|
@ -227,6 +227,6 @@ void FirstTimeWizard::OnPageChanging( wxWizardEvent& evt )
|
|||
|
||||
void FirstTimeWizard::OnPageChanged( wxWizardEvent& evt )
|
||||
{
|
||||
if( (sptr)evt.GetPage() == (sptr)&m_page_bios )
|
||||
if( ((sptr)evt.GetPage() == (sptr)&m_page_bios) )
|
||||
m_panel_BiosSel.OnShown();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue