Skip to content

Commit

Permalink
Merge pull request #226 from KotRikD/fix/2023_12_beatmap_path
Browse files Browse the repository at this point in the history
fix: shift beatmap struct offsets
  • Loading branch information
cyperdark authored Dec 18, 2023
2 parents 04d7e22 + f8d434a commit a15cb63
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions memory/read.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ type menuD struct {
Folder string `mem:"[[Beatmap] + 0x78]"`
Creator string `mem:"[[Beatmap] + 0x7C]"`
Name string `mem:"[[Beatmap] + 0x80]"`
Path string `mem:"[[Beatmap] + 0x94]"`
Difficulty string `mem:"[[Beatmap] + 0xB0]"`
MapID int32 `mem:"[Beatmap] + 0xCC"`
SetID int32 `mem:"[Beatmap] + 0xD0"`
RankedStatus int32 `mem:"[Beatmap] + 0x130"` // unknown, unsubmitted, pending/wip/graveyard, unused, ranked, approved, qualified
Path string `mem:"[[Beatmap] + 0x90]"`
Difficulty string `mem:"[[Beatmap] + 0xAC]"`
MapID int32 `mem:"[Beatmap] + 0xC8"`
SetID int32 `mem:"[Beatmap] + 0xCC"`
RankedStatus int32 `mem:"[Beatmap] + 0x12C"` // unknown, unsubmitted, pending/wip/graveyard, unused, ranked, approved, qualified
MD5 string `mem:"[[Beatmap] + 0x6C]"`
ObjectCount int32 `mem:"[Beatmap] + 0xFC"`
//BeatmapMode int32 `mem:"[Beatmap] + 0x118"`
Expand Down

0 comments on commit a15cb63

Please sign in to comment.