Files
Diddy-Kong-Racing/include/types.h
T
Ryan MyersandGitHub a005a4eb3d Match all libultra, and more closely match ultralib (#466)
* Massive libultra changes

* Fix the build!

* Remove crc comment that seemd to break the score script for some reason.

* Update README score.

* Apply some suggestions

* rename sins and coss funcs.
2025-02-24 11:45:02 -05:00

19 lines
284 B
C

#ifndef _TYPES_H_
#define _TYPES_H_
#include <PR/ultratypes.h>
typedef float Matrix[4][4];
typedef s32 MatrixS[4][4];
typedef s16 VertexList;
typedef u8 TriangleList;
typedef u32 uintptr_t;
#if defined(__sgi)
#define stubbed_printf
#else
#define stubbed_printf(...)
#endif
#endif