Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove unused variable waitingForPEInterruptDisable.
  • Loading branch information
comex committed Oct 13, 2013
1 parent 59ae93d commit 1570558
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions Source/Core/VideoCommon/Src/CommandProcessor.cpp
Expand Up @@ -51,7 +51,6 @@ volatile bool interruptSet= false;
volatile bool interruptWaiting= false;
volatile bool interruptTokenWaiting = false;
volatile bool interruptFinishWaiting = false;
volatile bool waitingForPEInterruptDisable = false;

volatile u32 VITicks = CommandProcessor::m_cpClockOrigin;

Expand Down Expand Up @@ -455,9 +454,7 @@ void STACKALIGN GatherPipeBursted()
if((ProcessorInterface::Fifo_CPUEnd == fifo.CPEnd) && (ProcessorInterface::Fifo_CPUBase == fifo.CPBase)
&& fifo.CPReadWriteDistance > 0)
{
waitingForPEInterruptDisable = true;
ProcessFifoAllDistance();
waitingForPEInterruptDisable = false;
}
}
return;
Expand Down
1 change: 0 additions & 1 deletion Source/Core/VideoCommon/Src/CommandProcessor.h
Expand Up @@ -23,7 +23,6 @@ extern volatile bool interruptSet;
extern volatile bool interruptWaiting;
extern volatile bool interruptTokenWaiting;
extern volatile bool interruptFinishWaiting;
extern volatile bool waitingForPEInterruptDisable;

// internal hardware addresses
enum
Expand Down

0 comments on commit 1570558

Please sign in to comment.