summaryrefslogtreecommitdiffstats
path: root/matchblox/engine/C_MatchBloxEngine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'matchblox/engine/C_MatchBloxEngine.cpp')
-rw-r--r--matchblox/engine/C_MatchBloxEngine.cpp38
1 files changed, 19 insertions, 19 deletions
diff --git a/matchblox/engine/C_MatchBloxEngine.cpp b/matchblox/engine/C_MatchBloxEngine.cpp
index dafa6a5..29b787e 100644
--- a/matchblox/engine/C_MatchBloxEngine.cpp
+++ b/matchblox/engine/C_MatchBloxEngine.cpp
@@ -53,27 +53,27 @@ C_MatchBloxEngine::~C_MatchBloxEngine()
DeleteModels();
}
-GameResult C_MatchBloxEngine::ProcessMsgs(msgQueue &f_Queue)
+GameResult C_MatchBloxEngine::ProcessMsgs(void)
{
- msgStruct l_msg;
+ //msgStruct l_msg;
- //process message queue
- while (!f_Queue.empty())
- {
- //get the first msg
- l_msg = f_Queue.front();
- f_Queue.pop();
-
- switch (l_msg.m_MessageType)
- {
- case WII_CURSOR_MOVE:
-
- break;
-
- case WII_BUTTON_PRESS:
- break;
- }
- }
+ ////process message queue
+ //while (!f_Queue.empty())
+ //{
+ // //get the first msg
+ // l_msg = f_Queue.front();
+ // f_Queue.pop();
+
+ // switch (l_msg.m_MessageType)
+ // {
+ // case WII_CURSOR_MOVE:
+ //
+ // break;
+
+ // case WII_BUTTON_PRESS:
+ // break;
+ // }
+ //}
return GR_BUSY;
}