Skip to content

Commit

Permalink
Fix #1516 again.
Browse files Browse the repository at this point in the history
  • Loading branch information
Apprentice-Alchemist committed Mar 12, 2022
1 parent 79b9531 commit 032e98e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lime/_internal/backend/native/NativeApplication.hx
Original file line number Diff line number Diff line change
Expand Up @@ -739,12 +739,12 @@ class NativeApplication

@:keep /*private*/ class KeyEventInfo
{
public var keyCode: #if neko Float #else Int #end;
public var keyCode: Float;
public var modifier:Int;
public var type:KeyEventType;
public var windowID:Int;

public function new(type:KeyEventType = null, windowID:Int = 0, keyCode:#if neko Float #else Int #end = 0, modifier:Int = 0)
public function new(type:KeyEventType = null, windowID:Int = 0, keyCode: Float = 0, modifier:Int = 0)
{
this.type = type;
this.windowID = windowID;
Expand Down

0 comments on commit 032e98e

Please sign in to comment.