From 16abaa249c4762050c61965c801f56d625c2bf4f Mon Sep 17 00:00:00 2001 From: "jean.chalard" Date: Mon, 15 Feb 2010 11:01:09 +0000 Subject: [PATCH] J : * Remove a useless debug print --- JGE/src/JGE.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/JGE/src/JGE.cpp b/JGE/src/JGE.cpp index 877dbaced..63b689b4d 100644 --- a/JGE/src/JGE.cpp +++ b/JGE/src/JGE.cpp @@ -145,13 +145,6 @@ bool JGE::GetButtonState(JButton button) bool JGE::GetButtonClick(JButton button) { - cout << "HOLDS : "; - for (map::iterator it = holds.begin(); it != holds.end(); ++it) - cout << it->first << " "; - cout << endl << "OLDHOLDS : "; - for (map::iterator it = oldHolds.begin(); it != oldHolds.end(); ++it) - cout << it->first << " "; - cout << endl; return ((holds.end() != holds.find(button)) && (oldHolds.end() == oldHolds.find(button))); }