mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 13:09:56 +00:00
10 lines
612 B
C
10 lines
612 B
C
// This file exists because every file introduces this string into the (.rodata).
|
|
// There was no #ifdef guard in this file in the source, which is why it happens for every source file.
|
|
// Luckily, this tells us where file boundaries are exactly.
|
|
// This file gets included by each source file, just like in Chunsoft's original source, so we can have this string easily just like they did.
|
|
|
|
// Later, we can move this into "global.h" before the #ifdef guard. But we can only do this if "global.h" isn't included outside of .c files...
|
|
#include "gba/defines.h"
|
|
|
|
ALIGNED(4) static const u8 sFill[] = _("pksdir0");
|