You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
9 lines
280 B
C
9 lines
280 B
C
#pragma once
|
|
|
|
#ifdef TARGET_N64
|
|
// IDO sometimes puts const variables in .rodata and sometimes in .data, which breaks ordering.
|
|
// This makes sure all variables are put into the same section (.data). We need to do this for
|
|
// both IDO and gcc for TARGET_N64.
|
|
#define const
|
|
#endif
|