mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-21 10:42:07 +00:00
Don't save '@' in map and sym files
Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
@@ -120,6 +120,10 @@ void MapfileWriteSection(const struct sSection *pSect)
|
|||||||
for (i = 0; i < pSect->nNumberOfSymbols; i += 1) {
|
for (i = 0; i < pSect->nNumberOfSymbols; i += 1) {
|
||||||
const struct sSymbol *pSym = pSect->tSymbols[i];
|
const struct sSymbol *pSym = pSect->tSymbols[i];
|
||||||
|
|
||||||
|
/* Don't print '@' */
|
||||||
|
if (strcmp(pSym->pzName, "@") == 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
if ((pSym->pSection == pSect) && (pSym->Type != SYM_IMPORT)) {
|
if ((pSym->pSection == pSect) && (pSym->Type != SYM_IMPORT)) {
|
||||||
if (mf) {
|
if (mf) {
|
||||||
fprintf(mf, " $%04X = %s\n",
|
fprintf(mf, " $%04X = %s\n",
|
||||||
|
|||||||
Reference in New Issue
Block a user