Files
ac-decomp/rel/m_random_field/mRF_MakePerfectBit.c
T
2022-12-21 00:00:29 +01:00

11 lines
211 B
C

#include "random_field.h"
int mRF_MakePerfectBit(void) {
int perfect_bit = 0;
int i;
for (i = 0; i < mRF_PERFECT_BIT; i++) {
perfect_bit |= 1 << i;
}
return perfect_bit;
}