mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
11 lines
211 B
C
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;
|
|
}
|