rnd-20060310-1-src
[rocksndiamonds.git] / src / game_em / synchro_3.c
index bc171a8372eb5e87011911f69e00b2de12b78cf0..226d0194420fffbafd7cb75afffaa78f7a583d02 100644 (file)
 
 void synchro_3(void)
 {
-  register unsigned int x;
-  register unsigned int y;
-  register unsigned int count;
-  register unsigned long random;
+  int x;
+  int y;
+  int count;
+  unsigned long random;
 
   /* update variables */
 
@@ -63,7 +63,7 @@ void synchro_3(void)
 
   /* grow amoeba */
 
-  random = Random;
+  random = RandomEM;
 
   for (count = lev.amoeba_time; count--;)
   {
@@ -89,7 +89,7 @@ void synchro_3(void)
     random = random * 129 + 1;
   }
 
-  Random = random;
+  RandomEM = random;
 
   /* handle explosions */