diff --git a/src/input.zig b/src/input.zig index 6eafb19..ef76893 100644 --- a/src/input.zig +++ b/src/input.zig @@ -87,7 +87,7 @@ pub const Key = packed struct { ((this.cp >= 0x0080 and this.cp <= 0x07FF) or (this.cp >= 0x0800 and this.cp <= 0xFFFF) or (this.cp >= 0x100000 and this.cp <= 0x10FFFF)) and // allowed unicode character ranges (2 - 4 byte characters) - (this.cp < 57348 or this.cp > 57454); // no other predifined meanings (i.e. arrow keys, etc.) + (this.cp < 57348 or this.cp > 57454); // no other predefined meanings (i.e. arrow keys, etc.) } /// Determine if the `Key` is an ascii character that can be printed to