mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-05 23:44:53 +00:00
ovl_En_Tk OK
This commit is contained in:
parent
c5f388b2ac
commit
86c4472662
38 changed files with 1067 additions and 2173 deletions
|
@ -13,6 +13,7 @@
|
|||
#define SQ(x) ((x)*(x))
|
||||
#define ABS(x) ((x) >= 0 ? (x) : -(x))
|
||||
#define DECR(x) ((x) == 0 ? 0 : ((x) -= 1))
|
||||
#define CLAMP(x,min,max) ((x) < (min) ? (min) : (x) > (max) ? (max) : (x))
|
||||
|
||||
#define PLAYER ((Player*)globalCtx->actorCtx.actorList[ACTORTYPE_PLAYER].first)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue