mirror of
https://github.com/n64decomp/sm64.git
synced 2025-03-09 22:09:44 -04:00
11 lines
271 B
C
11 lines
271 B
C
#ifndef MAKE_CONST_NONCONST_H
|
|
#define MAKE_CONST_NONCONST_H
|
|
|
|
#ifdef __sgi
|
|
// 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).
|
|
#define const
|
|
#endif
|
|
|
|
#endif
|