reverted changes to the Scroll/OnScroll method signatures.

This commit is contained in:
techdragon.nguyen@gmail.com
2012-01-27 23:47:02 +00:00
parent 3079faeedd
commit 9faf2ffc72
16 changed files with 20 additions and 19 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ public:
//////////////////////////////////////////////////////////////////////////
virtual void Resume() = 0;
virtual void OnScroll(int inXVelocity, int inYVelocity, int magnitude = 0) = 0;
virtual void OnScroll(int inXVelocity, int inYVelocity) = 0;
};
+1 -1
View File
@@ -331,7 +331,7 @@ class JGE
// Scroll events - currently triggered by SDL JOYBALL events
void Scroll(int inXVelocity, int inYVelocity, int magnitude);
void Scroll(int inXVelocity, int inYVelocity);
//////////////////////////////////////////////////////////////////////////
/// Get if the system is ended/paused or not.