Skip to content

Commit

Permalink
Fix key event debug output
Browse files Browse the repository at this point in the history
Fix for a0b7c0d.
  • Loading branch information
CendioOssman committed Jan 23, 2024
1 parent ab2fd41 commit 48c8e41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/input/keyboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ export default class Keyboard {
}

Log.Debug("onkeyevent " + (down ? "down" : "up") +
", keysym: " + keysym, ", code: " + code, + ", numlock: " + numlock + ", capslock: " + capslock);
", keysym: " + keysym, ", code: " + code +
", numlock: " + numlock + ", capslock: " + capslock);
this.onkeyevent(keysym, code, down, numlock, capslock);
}

Expand Down

0 comments on commit 48c8e41

Please sign in to comment.