hedgewars/uMisc.pas
changeset 3365 37ac593e9027
parent 3355 dc9e61e67484
child 3377 a3f0849f26bc
--- a/hedgewars/uMisc.pas	Thu Apr 22 17:43:12 2010 +0000
+++ b/hedgewars/uMisc.pas	Sun Apr 25 02:30:42 2010 +0000
@@ -661,9 +661,9 @@
 endian:= independent;
 {$ELSE}
 endian:= (((independent and $FF000000) shr 24) or
-    ((independent and $00FF0000) shr 8) or
-    ((independent and $0000FF00) shl 8) or
-    ((independent and $000000FF) shl 24))
+          ((independent and $00FF0000) shr 8) or
+          ((independent and $0000FF00) shl 8) or
+          ((independent and $000000FF) shl 24))
 {$ENDIF}
 end;