diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/EventList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/EventList.cpp b/src/core/EventList.cpp index a03d7a42..a833cc8e 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 == type) + if(gaEvent[i].type != type) continue; dist = (posn - gaEvent[i].posn).Magnitude(); if(dist < mindist){ |