Merge pull request #4850 from lioncash/redundant

Core: Remove redundant returns in FifoPlayerThread() and CpuThread()
This commit is contained in:
Matthew Parlane 2017-02-08 18:11:30 +13:00 committed by GitHub
commit 5b7c0d86cd
1 changed files with 0 additions and 4 deletions

View File

@ -401,8 +401,6 @@ static void CpuThread()
if (_CoreParameter.bFastmem) if (_CoreParameter.bFastmem)
EMM::UninstallExceptionHandler(); EMM::UninstallExceptionHandler();
return;
} }
static void FifoPlayerThread() static void FifoPlayerThread()
@ -454,8 +452,6 @@ static void FifoPlayerThread()
if (!_CoreParameter.bCPUThread) if (!_CoreParameter.bCPUThread)
g_video_backend->Video_Cleanup(); g_video_backend->Video_Cleanup();
return;
} }
// Initialize and create emulation thread // Initialize and create emulation thread