Re-express Mempaks[][] allocation as pages * bytes_per_page.

This commit is contained in:
2016-02-04 14:30:23 -05:00
parent 6b50bc4ff4
commit ab7671964b
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
#include "Mempak.H"
#include <Common/path.h>
uint8_t Mempaks[4][0x8000];
uint8_t Mempaks[4][128 * 256]; /* [CONTROLLERS][PAGES][BYTES_PER_PAGE] */
CPath MempakNames[4];
void Mempak::Load()