Skip to content

Commit b05a7a9

Browse files
olafkryusveikkos
authored andcommitted
Fix pausing after landing with Caps Lock or Shift on
1 parent 9c27425 commit b05a7a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

SJ3.PAS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2453,10 +2453,11 @@ begin
24532453
if (SDLPort.KeyPressed) then
24542454
begin
24552455
SDLPort.WaitForKeyPress(ch,ch2);
2456+
ch:=upcase(ch);
24562457
end;
24572458
if (ch=#0) and (Ch2=#68) then begin cupslut:=true; ch:=#27; end;
24582459
if (Ch=#27) or (Ch=#13) then Out:=True;
2459-
if (Ch='p') then SDLPort.WaitForKeyPress(ch,ch2);
2460+
if (Ch='P') then SDLPort.WaitForKeyPress(ch,ch2);
24602461

24612462
DeltaX:=Maki.X;
24622463
DeltaY:=Maki.Y;

0 commit comments

Comments
 (0)