SDL_Texture streaming in ROM, dungeon housekeeping

This commit is contained in:
scawful
2023-11-26 16:50:29 -05:00
parent d2fa9c0c53
commit e529e6ca34
3 changed files with 21 additions and 8 deletions

View File

@@ -203,8 +203,8 @@ absl::StatusOr<Bytes> ROM::Load2BppGraphics() {
}
absl::Status ROM::LoadLinkGraphics() {
const auto link_gfx_offset = 0x80000;
const auto link_gfx_length = 0x500;
const auto link_gfx_offset = 81920; // $10:8000
const auto link_gfx_length = 0x800;
// Load Links graphics from the ROM
for (int i = 0; i < 14; i++) {