mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-17 10:38:46 -05:00
This begins the documentation of overlay009, which is in charge of managing stuff related to the Distortion World. For now, the scope of this commit has been limited to the following: - start documenting structures used throughout this overlay, more specifically the `DistortionWorldSystem` struct - start documenting the structures found inside the files of the `tw_arc.narc` NARC - document functions and structures related to camera management inside the Distortion Word, including the templates found inside the `tw_arc.narc` NARC Signed-off-by: Kuruyia <github@kuruyia.net>
11 lines
246 B
C
11 lines
246 B
C
#ifndef POKEPLATINUM_CONSTANTS_TYPES_H
|
|
#define POKEPLATINUM_CONSTANTS_TYPES_H
|
|
|
|
#define S16_INT_MASK 0x7FFF
|
|
#define S16_SIGN_MASK 0x8000
|
|
|
|
#define S32_INT_MASK 0x7FFFFFFF
|
|
#define S32_SIGN_MASK 0x80000000
|
|
|
|
#endif // POKEPLATINUM_CONSTANTS_TYPES_H
|