fix offsets

This commit is contained in:
guiyomu-dev
2025-10-15 02:13:53 +02:00
parent b7017a4cb3
commit 294273abfc
2 changed files with 5 additions and 5 deletions

View File

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