Re-express Mempaks[][] allocation as pages * bytes_per_page.
This commit is contained in:
parent
6b50bc4ff4
commit
ab7671964b
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue