hedgewars/SDLh.pas
changeset 7565 00568d3054d0
parent 7278 000e4543f204
parent 7546 b50556f2a0e8
child 8022 10b3b93c1f56
child 8026 4a4f21070479
--- a/hedgewars/SDLh.pas	Sun Aug 12 23:05:15 2012 +0400
+++ b/hedgewars/SDLh.pas	Sun Aug 19 22:13:41 2012 +0400
@@ -410,12 +410,10 @@
 
     PSDL_Color = ^TSDL_Color;
     TSDL_Color = record
-        case Byte of
-            0: ( r: Byte;
-                 g: Byte;
-                 b: Byte;
-                 unused: Byte; );
-            1: ( value: LongWord; );
+            r: Byte;
+            g: Byte;
+            b: Byte;
+            unused: Byte;
         end;