Avoid use of magic numbers.

From Antonio Niño Díaz.
This commit is contained in:
Anthony J. Bentley
2015-02-22 03:55:51 -07:00
parent eb4bbb3e0b
commit d02294505c

View File

@@ -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;