mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-24 16:48:18 -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)
|
||||
{
|
||||
case Key::Esc: return 0x1b;
|
||||
case Key::Return: return 0x0d;
|
||||
case Key::Tab: return 0x09;
|
||||
case Key::Space: return (char)0xa0;
|
||||
case Key::Return: return '\n';
|
||||
case Key::Tab: return '\t';
|
||||
case Key::Space: return ' ';
|
||||
case Key::Backspace: return 0x08;
|
||||
case Key::Plus: return 0x2b;
|
||||
case Key::Minus: return 0x2d;
|
||||
case Key::Plus: return '+';
|
||||
case Key::Minus: return '-';
|
||||
default: break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue