diff --git a/mdl/m_input_darwin.pas b/mdl/m_input_darwin.pas index 1573a7a..c2705d5 100644 --- a/mdl/m_input_darwin.pas +++ b/mdl/m_input_darwin.pas @@ -215,7 +215,7 @@ Begin CASE ch OF #27: begin State:=1; - //WaitMS(10); + WaitMS(10); { This has to be sysKeyPressed and not "keyPressed", since after } @@ -383,7 +383,7 @@ Begin 255 : ; end; if State<>0 then - {WaitMS(10)}; + WaitMS(10); end; if State=1 then PushKey(ch); diff --git a/mdl/m_input_linux.pas b/mdl/m_input_linux.pas index 79c570a..3a935d6 100644 --- a/mdl/m_input_linux.pas +++ b/mdl/m_input_linux.pas @@ -201,7 +201,7 @@ Begin CASE ch OF #27: begin State:=1; - //WaitMS(10); + WaitMS(10); { This has to be sysKeyPressed and not "keyPressed", since after } @@ -326,7 +326,7 @@ Begin 255 : ; end; if State<>0 then - {WaitMS(10)}; + WaitMS(10); end; if State=1 then PushKey(ch); @@ -337,4 +337,4 @@ Begin ReadKey:=PopKey; End; -End. \ No newline at end of file +End.