Go all out and allow any code page 437 character in passwords.

Also only let you input 0-9 in colours input widgets
This commit is contained in:
UnknownShadow200 2019-09-23 08:26:57 +10:00
parent 46ae0bb41b
commit 3bb930a35b

View file

@ -711,9 +711,7 @@ static void MainScreen_Singleplayer(void* w, int x, int y) {
Launcher_StartGame(user, &String_Empty, &String_Empty, &String_Empty, &String_Empty);
}
static bool MainScreen_PasswordFilter(char c) {
return c >= ' ' && c <= '~';
}
static bool MainScreen_PasswordFilter(char c) { return true; }
static void MainScreen_Init(struct LScreen* s_) {
String user, pass; char passBuffer[STRING_SIZE];