mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-01-23 09:34:35 -05:00
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:
parent
46ae0bb41b
commit
3bb930a35b
1 changed files with 1 additions and 3 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Reference in a new issue