From 06f6ca8d8194d7b292996139281b5d52e5ece91f Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 7 Feb 2017 17:58:59 -0500 Subject: [PATCH] Core: Remove redundant returns in FifoPlayerThread() and CpuThread() There's no need to explicitly return at the end of a void function. --- Source/Core/Core/Core.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index f580b6f795..e123989f7b 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -401,8 +401,6 @@ static void CpuThread() if (_CoreParameter.bFastmem) EMM::UninstallExceptionHandler(); - - return; } static void FifoPlayerThread() @@ -454,8 +452,6 @@ static void FifoPlayerThread() if (!_CoreParameter.bCPUThread) g_video_backend->Video_Cleanup(); - - return; } // Initialize and create emulation thread