blob: 6caec65c22a51a73af7fa54737cb79b896318334 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <libultraship.h>
#include <macros.h>
/**
* Trig tables get loaded into memory at this location.
* See trig_tables.c for the real file.
*/
#ifdef VERSION_EU
ALIGNED8 u8 trigTablesPadding[0x5750];
#else
ALIGNED8 u8 trigTablesPadding[0x5810];
#endif
|