mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 12:01:47 +00:00
Fix virtual keyboard left wrap
This commit is contained in:
parent
6eaf350387
commit
68ed9982b6
1 changed files with 1 additions and 1 deletions
|
|
@ -1289,7 +1289,7 @@ static void M_MenuTypingInput(INT32 key)
|
||||||
keyboardx--;
|
keyboardx--;
|
||||||
if (keyboardx < 0)
|
if (keyboardx < 0)
|
||||||
{
|
{
|
||||||
keyboardx = 13;
|
keyboardx = 12;
|
||||||
M_UpdateKeyboardX();
|
M_UpdateKeyboardX();
|
||||||
}
|
}
|
||||||
M_SetMenuDelay(pid);
|
M_SetMenuDelay(pid);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue