From f63c614d6aace99bc2d63ffa187f96d215f4369b Mon Sep 17 00:00:00 2001 From: aap Date: Fri, 19 Jul 2019 10:09:08 +0200 Subject: fixed eventlist bug --- src/core/EventList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/core/EventList.cpp b/src/core/EventList.cpp index 15ad49dd..a03d7a42 100644 --- a/src/core/EventList.cpp +++ b/src/core/EventList.cpp @@ -175,7 +175,7 @@ CEventList::FindClosestEvent(eEventType type, CVector posn, int32 *event) float mindist = 60.0f; for(i = 0; i < NUMEVENTS; i++){ - if(gaEvent[i].type == EVENT_NULL) + if(gaEvent[i].type == type) continue; dist = (posn - gaEvent[i].posn).Magnitude(); if(dist < mindist){ -- cgit v1.2.3