1
0
Fork 0
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:
fgenesis 2023-12-21 06:04:51 +01:00
parent cf2dc71a34
commit f2219ef50b

View file

@ -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))