hedgewars/SDLh.pas
changeset 7546 b50556f2a0e8
parent 7237 1bbe31e0d707
child 7565 00568d3054d0
--- a/hedgewars/SDLh.pas	Thu Aug 16 21:58:57 2012 +0400
+++ b/hedgewars/SDLh.pas	Fri Aug 17 07:49:54 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;