mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-17 20:31:57 -05:00
Cleanup.
This commit is contained in:
parent
b8f2b24a82
commit
6eafd8b137
1 changed files with 5 additions and 5 deletions
|
@ -61,12 +61,12 @@ namespace entry
|
||||||
switch (_key)
|
switch (_key)
|
||||||
{
|
{
|
||||||
case Key::Esc: return 0x1b;
|
case Key::Esc: return 0x1b;
|
||||||
case Key::Return: return 0x0d;
|
case Key::Return: return '\n';
|
||||||
case Key::Tab: return 0x09;
|
case Key::Tab: return '\t';
|
||||||
case Key::Space: return (char)0xa0;
|
case Key::Space: return ' ';
|
||||||
case Key::Backspace: return 0x08;
|
case Key::Backspace: return 0x08;
|
||||||
case Key::Plus: return 0x2b;
|
case Key::Plus: return '+';
|
||||||
case Key::Minus: return 0x2d;
|
case Key::Minus: return '-';
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue