DEV9: misc formatting

This commit is contained in:
Gauvain 'GovanifY' Roussel-Tarbouriech 2020-10-05 08:26:03 +02:00 committed by refractionpcsx2
parent 52b687dc55
commit ba14536441
3 changed files with 10 additions and 10 deletions

View File

@ -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}
) )

View File

@ -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();

View File

@ -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)