ow rom housekeeping

This commit is contained in:
Justin Scofield
2022-07-20 22:13:21 -04:00
parent c98985fd3a
commit 2da8a4a126
2 changed files with 20 additions and 13 deletions

View File

@@ -58,8 +58,7 @@ void ROM::LoadFromPointer(uchar *data) { current_rom_ = data; }
// 127-217 -> compressed 3bpp sprites -> (decompressed each) 0x600 chars
// 218-222 -> compressed 2bpp -> (decompressed each) 0x800 chars
void ROM::LoadAllGraphicsData() {
int buffer_size = 346624;
auto buffer = new uchar[buffer_size];
auto buffer = new uchar[346624];
auto data = new uchar[2048];
int buffer_pos = 0;