housekeeping

This commit is contained in:
scawful
2022-07-06 22:22:29 -04:00
parent b127718ae8
commit 9d576351d0
12 changed files with 43 additions and 43 deletions

View File

@@ -29,9 +29,9 @@ void Overworld::Load(app::rom::ROM& rom, uchar* allGfxPtr) {
rom_ = rom;
allGfx16Ptr = allGfxPtr;
overworldMapPointer = std::make_shared<uchar[]>(0x40000);
mapblockset16 = std::make_shared<uchar[]>(1048576);
currentOWgfx16Ptr = std::make_shared<uchar[]>((128 * 512) / 2);
overworldMapPointer = std::make_shared<uchar>(0x40000);
mapblockset16 = std::make_shared<uchar>(1048576);
currentOWgfx16Ptr = std::make_shared<uchar>((128 * 512) / 2);
AssembleMap32Tiles();
AssembleMap16Tiles();