Skip to content

Commit 6f8ee63

Browse files
authored
Remove getHandler() hashlink conditional (#3458)
1 parent f6a98e3 commit 6f8ee63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flixel/util/FlxSignal.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ private class FlxBaseSignal<T> implements IFlxSignal<T>
193193
{
194194
for (handler in handlers)
195195
{
196-
if (#if (neko || hl) // simply comparing the functions doesn't do the trick on these targets
196+
if (#if neko // simply comparing the functions doesn't do the trick on neko
197197
Reflect.compareMethods(handler.listener, listener) #else handler.listener == listener #end)
198198
{
199199
return handler; // Listener was already registered.

0 commit comments

Comments
 (0)