Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
effects_internal.h
Go to the documentation of this file.
1#ifndef _EFFECTS_INTERNAL_H_
2#define _EFFECTS_INTERNAL_H_
3
4#include "effects.h"
5
6// slimmed down assert so that all effects still fit under the TLB page size limit of 0x1000 bytes
7#undef ASSERT
8#define ASSERT(condition) \
9 if (!(condition)) { \
10 IS_DEBUG_PANIC("ASSERT"); \
11 }
12
13s32 effect_rand_int(s32);
14s32 effect_simple_rand(s32, s32);
15
16#include "effect_shims.h"
17
18#endif
s32 effect_simple_rand(s32, s32)
s32 effect_rand_int(s32)