mirror of https://github.com/PCSX2/pcsx2.git
DEV9: misc formatting
This commit is contained in:
parent
52b687dc55
commit
ba14536441
|
@ -313,7 +313,7 @@ set(pcsx2DEV9Sources
|
||||||
DEV9/Linux/Config.cpp
|
DEV9/Linux/Config.cpp
|
||||||
DEV9/Linux/Linux.cpp
|
DEV9/Linux/Linux.cpp
|
||||||
DEV9/Linux/net.cpp
|
DEV9/Linux/net.cpp
|
||||||
${pcsx2DEV9UISources}
|
${pcsx2DEV9UISources}
|
||||||
)
|
)
|
||||||
|
|
||||||
# DEV9 headers
|
# DEV9 headers
|
||||||
|
@ -323,7 +323,7 @@ set(pcsx2DEV9Headers
|
||||||
DEV9/net.h
|
DEV9/net.h
|
||||||
DEV9/pcap_io.h
|
DEV9/pcap_io.h
|
||||||
DEV9/smap.h
|
DEV9/smap.h
|
||||||
${pcsx2DEV9UIHeaders}
|
${pcsx2DEV9UIHeaders}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -831,8 +831,8 @@ set(pcsx2FinalLibs
|
||||||
${ALSA_LIBRARIES}
|
${ALSA_LIBRARIES}
|
||||||
${SOUNDTOUCH_LIBRARIES}
|
${SOUNDTOUCH_LIBRARIES}
|
||||||
${SDL2_LIBRARIES}
|
${SDL2_LIBRARIES}
|
||||||
${PCAP_LIBRARY}
|
${PCAP_LIBRARY}
|
||||||
${LIBXML2_LIBRARIES}
|
${LIBXML2_LIBRARIES}
|
||||||
${Platform_Libs}
|
${Platform_Libs}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -95,7 +95,7 @@ void SysCoreThread::Start()
|
||||||
return;
|
return;
|
||||||
GetCorePlugins().Init();
|
GetCorePlugins().Init();
|
||||||
SPU2init();
|
SPU2init();
|
||||||
DEV9init();
|
DEV9init();
|
||||||
_parent::Start();
|
_parent::Start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -303,7 +303,7 @@ void SysCoreThread::ExecuteTaskInThread()
|
||||||
void SysCoreThread::OnSuspendInThread()
|
void SysCoreThread::OnSuspendInThread()
|
||||||
{
|
{
|
||||||
GetCorePlugins().Close();
|
GetCorePlugins().Close();
|
||||||
DEV9close();
|
DEV9close();
|
||||||
DoCDVDclose();
|
DoCDVDclose();
|
||||||
FWclose();
|
FWclose();
|
||||||
SPU2close();
|
SPU2close();
|
||||||
|
@ -316,7 +316,7 @@ void SysCoreThread::OnResumeInThread(bool isSuspended)
|
||||||
DoCDVDopen();
|
DoCDVDopen();
|
||||||
FWopen();
|
FWopen();
|
||||||
SPU2open((void*)pDsp);
|
SPU2open((void*)pDsp);
|
||||||
DEV9open((void*)pDsp);
|
DEV9open((void*)pDsp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -332,13 +332,13 @@ void SysCoreThread::OnCleanupInThread()
|
||||||
// FIXME: temporary workaround for deadlock on exit, which actually should be a crash
|
// FIXME: temporary workaround for deadlock on exit, which actually should be a crash
|
||||||
vu1Thread.WaitVU();
|
vu1Thread.WaitVU();
|
||||||
SPU2close();
|
SPU2close();
|
||||||
DEV9close();
|
DEV9close();
|
||||||
DoCDVDclose();
|
DoCDVDclose();
|
||||||
FWclose();
|
FWclose();
|
||||||
GetCorePlugins().Close();
|
GetCorePlugins().Close();
|
||||||
GetCorePlugins().Shutdown();
|
GetCorePlugins().Shutdown();
|
||||||
SPU2shutdown();
|
SPU2shutdown();
|
||||||
DEV9shutdown();
|
DEV9shutdown();
|
||||||
|
|
||||||
_mm_setcsr(m_mxcsr_saved.bitmask);
|
_mm_setcsr(m_mxcsr_saved.bitmask);
|
||||||
Threading::DisableHiresScheduler();
|
Threading::DisableHiresScheduler();
|
||||||
|
|
|
@ -61,7 +61,7 @@ void MainEmuFrame::Menu_McdSettings_Click(wxCommandEvent& event)
|
||||||
|
|
||||||
void MainEmuFrame::Menu_NetworkSettings_Click(wxCommandEvent &event)
|
void MainEmuFrame::Menu_NetworkSettings_Click(wxCommandEvent &event)
|
||||||
{
|
{
|
||||||
DEV9configure();
|
DEV9configure();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainEmuFrame::Menu_WindowSettings_Click(wxCommandEvent &event)
|
void MainEmuFrame::Menu_WindowSettings_Click(wxCommandEvent &event)
|
||||||
|
|
Loading…
Reference in New Issue