changed "http" to "https" in URLs
[rocksndiamonds.git] / src / game_mm / mm_init.c
index 1906c97d3bbb69fb75d58cc868aac7d0bcb91e82..0fe4c9fca1ef23892709707b926b3df946d3df92 100644 (file)
@@ -4,7 +4,7 @@
 // (c) 1994-2017 by Artsoft Entertainment
 //                         Holger Schemel
 //                 info@artsoft.org
-//                 http://www.artsoft.org/
+//                 https://www.artsoft.org/
 // ----------------------------------------------------------------------------
 // mm_init.c
 // ============================================================================
@@ -221,17 +221,17 @@ void InitElementProperties_MM(void)
   };
   static int num_properties = sizeof(ep_num) / sizeof(int *);
 
-  for(i = 0; i < MAX_ELEMENTS; i++)
+  for (i = 0; i < MAX_ELEMENTS; i++)
     Elementeigenschaften[i] = 0;
 
-  for(i = 0; i < num_properties; i++)
-    for(j = 0; j < *(ep_num[i]); j++)
+  for (i = 0; i < num_properties; i++)
+    for (j = 0; j < *(ep_num[i]); j++)
       Elementeigenschaften[(ep_array[i])[j]] |= ep_bit[i];
 
-  for(i = EL_CHAR_START; i <= EL_CHAR_END; i++)
+  for (i = EL_CHAR_START; i <= EL_CHAR_END; i++)
     Elementeigenschaften[i] |= (EP_BIT_CHAR | EP_BIT_INACTIVE);
 
-  for(i = EL_WALL_START; i <= EL_WALL_END; i++)
+  for (i = EL_WALL_START; i <= EL_WALL_END; i++)
     Elementeigenschaften[i] |= EP_BIT_WALL;
 }