fix comparison

This commit is contained in:
guiyomu-dev
2025-10-15 02:38:59 +02:00
parent 294273abfc
commit 8844908462

View File

@@ -314,7 +314,7 @@ func (gd *GameReader) GetSelectedCharacterName() string {
}
func (gd *GameReader) LegacyGraphics() bool {
return gd.ReadUInt(gd.Process.moduleBaseAddressPtr+0x1DE6295, Uint8) == 1
return gd.ReadUInt(gd.Process.moduleBaseAddressPtr+0x1DE6295, Uint8) != 0
}
func (gd *GameReader) IsOnline() bool {