fix zoom
authorkoda
Sat, 01 May 2010 19:40:45 +0000
changeset 3389 9b97b9240c22
parent 3388 ab9352a4ddcc
child 3390 1d4926d10a9e
fix zoom
hedgewars/SDLh.pas
--- a/hedgewars/SDLh.pas	Sat May 01 18:44:25 2010 +0000
+++ b/hedgewars/SDLh.pas	Sat May 01 19:40:45 2010 +0000
@@ -403,16 +403,17 @@
         end;
 
     TSDL_MouseButtonEvent = record
-        which,
-        button,
-        state: byte;
+
 {$IFDEF SDL13}
         _type: LongInt;
         windowID: LongInt;
         x, y: LongInt;
         padding1: byte;
 {$ELSE}
-        _type: byte;
+        _type,
+        which,
+        button,
+        state: byte;
         x, y: word;
 {$ENDIF}
         end;