hedgewars/SDLh.pas
changeset 3748 daea2650a5aa
parent 3701 8c449776ebe6
child 3904 22e4d74240e5
equal deleted inserted replaced
3747:76a197793b62 3748:daea2650a5aa
   463         which: Byte;
   463         which: Byte;
   464         axis: Byte;
   464         axis: Byte;
   465 {$IFDEF SDL13}
   465 {$IFDEF SDL13}
   466         value: LongInt;
   466         value: LongInt;
   467 {$ELSE}
   467 {$ELSE}
   468         value: word;
   468         value: Smallint;
   469 {$ENDIF}
   469 {$ENDIF}
   470         end;
   470         end;
   471 
   471 
   472     TSDL_JoyBallEvent = record
   472     TSDL_JoyBallEvent = record
   473         which: Byte;
   473         which: Byte;
   475 {$IFDEF SDL13}
   475 {$IFDEF SDL13}
   476         type_: LongInt;
   476         type_: LongInt;
   477         xrel, yrel: LongInt;
   477         xrel, yrel: LongInt;
   478 {$ELSE}
   478 {$ELSE}
   479         type_: Byte;
   479         type_: Byte;
   480         xrel, yrel: word;
   480         xrel, yrel: Smallint;
   481 {$ENDIF}
   481 {$ENDIF}
   482         end;
   482         end;
   483 
   483 
   484     TSDL_JoyHatEvent = record
   484     TSDL_JoyHatEvent = record
   485 {$IFDEF SDL13}
   485 {$IFDEF SDL13}