From 7934df3879640d1dfa0d5612721435c1a87b048a Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Sat, 17 Aug 2013 01:27:08 +0000 Subject: [PATCH] Remove a redundant check in the fifo. --- Source/Core/VideoCommon/Src/Fifo.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/Core/VideoCommon/Src/Fifo.cpp b/Source/Core/VideoCommon/Src/Fifo.cpp index 5114e3fc2b..a00e531fa4 100644 --- a/Source/Core/VideoCommon/Src/Fifo.cpp +++ b/Source/Core/VideoCommon/Src/Fifo.cpp @@ -151,9 +151,6 @@ void RunGpuLoop() // check if we are able to run this buffer while (GpuRunningState && !CommandProcessor::interruptWaiting && fifo.bFF_GPReadEnable && fifo.CPReadWriteDistance && !AtBreakpoint()) { - if (!GpuRunningState) - break; - fifo.isGpuReadingData = true; CommandProcessor::isPossibleWaitingSetDrawDone = fifo.bFF_GPLinkEnable ? true : false;