fix offsets after d2r update

This commit is contained in:
guiyomu-dev
2025-11-06 00:07:51 +01:00
parent 294435418d
commit b644d79977
2 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ import (
)
func (gd *GameReader) GetKeyBindings() data.KeyBindings {
blob := gd.ReadBytesFromMemory(gd.moduleBaseAddressPtr+gd.offset.KeyBindingsOffset, 0x500)
blob := gd.ReadBytesFromMemory(gd.moduleBaseAddressPtr+0x1E36C04, 0x500)
blobSkills := gd.ReadBytesFromMemory(gd.offset.KeyBindingsSkillsOffset, 0x500)
skillsKB := [16]data.SkillBinding{}