macros.h
changeset 543 e3b43338096b
parent 500 ef288590e096
child 568 6eb7d394fb35
--- a/macros.h	Sat Dec 04 15:02:45 2004 +0000
+++ b/macros.h	Sat Dec 04 17:54:56 2004 +0000
@@ -170,7 +170,6 @@
 
 
 #define CHANCE16(a,b) ((uint16)Random() <= (uint16)((65536 * a) / b))
-#define ICHANCE16(a,b) ((uint16)InteractiveRandom() <= (uint16)((65536 * a) / b))
 #define CHANCE16R(a,b,r) ((uint16)(r=Random()) <= (uint16)((65536 * a) / b))
 #define CHANCE16I(a,b,v) ((uint16)(v) <= (uint16)((65536 * a) / b))