summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/CommandProcessor.cpp
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2014-07-08 15:58:25 +0200
committerdegasus <wickmarkus@web.de>2014-07-11 16:10:20 +0200
commit6d3f249dcc746cc7845ef88ddb8ce3bcc9221aca (patch)
treee2ca5783d36a54283ff241ef9a053053bb5cc258 /Source/Core/VideoCommon/CommandProcessor.cpp
parent9560ecdbec319ab4bb7aca2b8bd2e6ed27d0b7c0 (diff)
mark all local variables as static
Diffstat (limited to 'Source/Core/VideoCommon/CommandProcessor.cpp')
-rw-r--r--Source/Core/VideoCommon/CommandProcessor.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/Source/Core/VideoCommon/CommandProcessor.cpp b/Source/Core/VideoCommon/CommandProcessor.cpp
index c27681ac3c..e42b7227db 100644
--- a/Source/Core/VideoCommon/CommandProcessor.cpp
+++ b/Source/Core/VideoCommon/CommandProcessor.cpp
@@ -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;
-
-u16 m_bboxleft;
-u16 m_bboxtop;
-u16 m_bboxright;
-u16 m_bboxbottom;
-u16 m_tokenReg;
+static UCPStatusReg m_CPStatusReg;
+static UCPCtrlReg m_CPCtrlReg;
+static UCPClearReg m_CPClearReg;
+
+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;