rnd-20001125-1-src
[rocksndiamonds.git] / src / events.c
index 470271cbefe3a68b6de54c4fc79d1a6d9b23cc6c..9f84cc207126b5ce4d7f2d52053061fc9faa623c 100644 (file)
@@ -33,7 +33,7 @@
    delay problems with lots of mouse motion events when mouse
    button not pressed */
 
-int EventFilter(const Event *event)
+int FilterMouseMotionEvents(const Event *event)
 {
   if (event->type != EVENT_MOTIONNOTIFY)
     return 1;
@@ -55,7 +55,7 @@ void EventLoop(void)
 
       NextEvent(&event);
 
-      if (EventFilter(&event))
+      if (FilterMouseMotionEvents(&event))
       {
        switch(event.type)
        {