Partially matched board/item

This commit is contained in:
mrshigure 2024-01-31 13:51:56 -08:00
parent a40e6bce2f
commit 5bbdcd3eca
12 changed files with 1960 additions and 33 deletions

View file

@ -6,7 +6,7 @@
#include "math.h"
#include "string.h"
#define ABS(x) ((x < 0) ? -x : x)
#define ABS(x) (((x) < 0) ? -(x) : (x))
typedef struct {
/* 0x00 */ ModelData *unk00;