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);
|
||||
}
|
||||
for (i = 256; i < MAXBANKS; i += 1) {
|
||||
for (i = BANK_WRAM0; i < MAXBANKS; i++) {
|
||||
struct sSection *pSect;
|
||||
MapfileInitBank(i);
|
||||
pSect = pSections;
|
||||
|
||||
Reference in New Issue
Block a user