mirror of
https://github.com/zeldaret/tmc
synced 2026-08-02 08:32:26 -04:00
def ScreenTransition
This commit is contained in:
+6
-11
@@ -47,17 +47,12 @@
|
||||
#define min(a, b) ((a) < (b) ? (a) : (b))
|
||||
#define max(a, b) ((a) >= (b) ? (a) : (b))
|
||||
|
||||
struct Coords16
|
||||
{
|
||||
s16 x;
|
||||
s16 y;
|
||||
} PACKED;
|
||||
|
||||
struct UCoords16
|
||||
{
|
||||
u16 x;
|
||||
u16 y;
|
||||
};
|
||||
typedef union {
|
||||
s32 WORD;
|
||||
struct {
|
||||
s16 x, y;
|
||||
} HALF;
|
||||
} Coords;
|
||||
|
||||
union SplitWord {
|
||||
s32 WORD;
|
||||
|
||||
Reference in New Issue
Block a user