mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Avoid use of magic numbers.
From Antonio Niño Díaz.
This commit is contained in:
@@ -86,7 +86,7 @@ Output(void)
|
|||||||
|
|
||||||
fclose(f);
|
fclose(f);
|
||||||
}
|
}
|
||||||
for (i = 256; i < MAXBANKS; i += 1) {
|
for (i = BANK_WRAM0; i < MAXBANKS; i++) {
|
||||||
struct sSection *pSect;
|
struct sSection *pSect;
|
||||||
MapfileInitBank(i);
|
MapfileInitBank(i);
|
||||||
pSect = pSections;
|
pSect = pSections;
|
||||||
|
|||||||
Reference in New Issue
Block a user