diff --git a/rogue/random.h b/rogue/random.h index 6fe22b7..f10f725 100644 --- a/rogue/random.h +++ b/rogue/random.h @@ -1,3 +1,2 @@ #define get_rand(x, y) (((rand() % ((y) - (x))) + 1) + (x)) /* 0 index */ #define rand_percent(odds) ((rand() % 99 + 1) <= (odds)) -#define coin_toss (rand() & 1)