mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 13:49:53 -06:00
mark all local variables as static
This commit is contained in:
@ -24,21 +24,21 @@
|
||||
namespace CommandProcessor
|
||||
{
|
||||
|
||||
int et_UpdateInterrupts;
|
||||
static int et_UpdateInterrupts;
|
||||
|
||||
// TODO(ector): Warn on bbox read/write
|
||||
|
||||
// STATE_TO_SAVE
|
||||
SCPFifoStruct fifo;
|
||||
UCPStatusReg m_CPStatusReg;
|
||||
UCPCtrlReg m_CPCtrlReg;
|
||||
UCPClearReg m_CPClearReg;
|
||||
static UCPStatusReg m_CPStatusReg;
|
||||
static UCPCtrlReg m_CPCtrlReg;
|
||||
static UCPClearReg m_CPClearReg;
|
||||
|
||||
u16 m_bboxleft;
|
||||
u16 m_bboxtop;
|
||||
u16 m_bboxright;
|
||||
u16 m_bboxbottom;
|
||||
u16 m_tokenReg;
|
||||
static u16 m_bboxleft;
|
||||
static u16 m_bboxtop;
|
||||
static u16 m_bboxright;
|
||||
static u16 m_bboxbottom;
|
||||
static u16 m_tokenReg;
|
||||
|
||||
volatile bool isPossibleWaitingSetDrawDone = false;
|
||||
volatile bool interruptSet= false;
|
||||
|
Reference in New Issue
Block a user