mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-25 09:44:02 +00:00
attempt to allow some more input chars in DSQ::getUserInputString()
This commit is contained in:
parent
cf2dc71a34
commit
f2219ef50b
1 changed files with 4 additions and 0 deletions
|
@ -3207,6 +3207,10 @@ std::string DSQ::getUserInputString(std::string labelText, std::string t, bool a
|
|||
doAlphabetInputKey(KEY_MINUS, '-', (char*)&map, &text, '_');
|
||||
|
||||
doAlphabetInputKey(KEY_TILDE, '~', (char*)&map, &text, '~');
|
||||
doAlphabetInputKey(KEY_EQUALS, '=', (char*)&map, &text);
|
||||
doAlphabetInputKey(KEY_LBRACKET, '(', (char*)&map, &text);
|
||||
doAlphabetInputKey(KEY_RBRACKET, ')', (char*)&map, &text);
|
||||
doAlphabetInputKey(KEY_SEMICOLON, ';', (char*)&map, &text);
|
||||
}
|
||||
|
||||
if (getKeyState(KEY_BACKSPACE))
|
||||
|
|
Loading…
Reference in a new issue