InKey bugfix in Windows (thanks Griffin!)

This commit is contained in:
mysticbbs 2012-03-16 20:00:57 -04:00
parent 2d673c19ee
commit 6ce1060a2b
1 changed files with 12 additions and 10 deletions

View File

@ -1144,16 +1144,20 @@ Begin
Handles[0] := Input.ConIn; Handles[0] := Input.ConIn;
If Not TBBSCore(Core).LocalMode Then Begin If Not TBBSCore(Core).LocalMode Then Begin
Handles[1] := SocketEvent; If TBBSCore(Core).Client.DataWaiting Then
InType := 2
Else Begin
Handles[1] := SocketEvent;
WSAResetEvent (Handles[1]); WSAResetEvent (Handles[1]);
WSAEventSelect (TBBSCore(Core).Client.FSocketHandle, Handles[1], FD_READ OR FD_CLOSE); WSAEventSelect (TBBSCore(Core).Client.FSocketHandle, Handles[1], FD_READ OR FD_CLOSE);
Case WaitForMultipleObjects(2, @Handles, False, Wait) of Case WaitForMultipleObjects(2, @Handles, False, Wait) of
WAIT_OBJECT_0 : InType := 1; WAIT_OBJECT_0 : InType := 1;
WAIT_OBJECT_0 + 1 : InType := 2; WAIT_OBJECT_0 + 1 : InType := 2;
Else Else
Exit; Exit;
End;
End; End;
End Else End Else
Case WaitForSingleObject (Handles[0], Wait) of Case WaitForSingleObject (Handles[0], Wait) of
@ -1197,14 +1201,12 @@ Begin
IsArrow := True; IsArrow := True;
Case Result of Case Result of
(*
#03 : Result := #81; { pgdn } #03 : Result := #81; { pgdn }
#04 : Result := #77; { right } #04 : Result := #77; { right }
#05 : Result := #72; { up } #05 : Result := #72; { up }
#18 : Result := #73; { pgup } #18 : Result := #73; { pgup }
#19 : Result := #75; { left } #19 : Result := #75; { left }
#24 : Result := #80; { down } #24 : Result := #80; { down }
*)
#27 : Begin #27 : Begin
If Not TBBSCore(Core).Client.DataWaiting Then WaitMS(25); If Not TBBSCore(Core).Client.DataWaiting Then WaitMS(25);
If Not TBBSCore(Core).Client.DataWaiting Then WaitMS(25); If Not TBBSCore(Core).Client.DataWaiting Then WaitMS(25);