mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Remove unused variable waitingForPEInterruptDisable.
This commit is contained in:
@ -51,7 +51,6 @@ volatile bool interruptSet= false;
|
|||||||
volatile bool interruptWaiting= false;
|
volatile bool interruptWaiting= false;
|
||||||
volatile bool interruptTokenWaiting = false;
|
volatile bool interruptTokenWaiting = false;
|
||||||
volatile bool interruptFinishWaiting = false;
|
volatile bool interruptFinishWaiting = false;
|
||||||
volatile bool waitingForPEInterruptDisable = false;
|
|
||||||
|
|
||||||
volatile u32 VITicks = CommandProcessor::m_cpClockOrigin;
|
volatile u32 VITicks = CommandProcessor::m_cpClockOrigin;
|
||||||
|
|
||||||
@ -455,9 +454,7 @@ void STACKALIGN GatherPipeBursted()
|
|||||||
if((ProcessorInterface::Fifo_CPUEnd == fifo.CPEnd) && (ProcessorInterface::Fifo_CPUBase == fifo.CPBase)
|
if((ProcessorInterface::Fifo_CPUEnd == fifo.CPEnd) && (ProcessorInterface::Fifo_CPUBase == fifo.CPBase)
|
||||||
&& fifo.CPReadWriteDistance > 0)
|
&& fifo.CPReadWriteDistance > 0)
|
||||||
{
|
{
|
||||||
waitingForPEInterruptDisable = true;
|
|
||||||
ProcessFifoAllDistance();
|
ProcessFifoAllDistance();
|
||||||
waitingForPEInterruptDisable = false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
@ -23,7 +23,6 @@ extern volatile bool interruptSet;
|
|||||||
extern volatile bool interruptWaiting;
|
extern volatile bool interruptWaiting;
|
||||||
extern volatile bool interruptTokenWaiting;
|
extern volatile bool interruptTokenWaiting;
|
||||||
extern volatile bool interruptFinishWaiting;
|
extern volatile bool interruptFinishWaiting;
|
||||||
extern volatile bool waitingForPEInterruptDisable;
|
|
||||||
|
|
||||||
// internal hardware addresses
|
// internal hardware addresses
|
||||||
enum
|
enum
|
||||||
|
Reference in New Issue
Block a user