Skip to content

Commit

Permalink
Fix symbol index for checksum copy.
Browse files Browse the repository at this point in the history
  • Loading branch information
bemasher committed Jul 9, 2015
1 parent 34b9eb6 commit c4340c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r900/r900.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ func (p Parser) Parse(indices []int) (msgs []parse.Message) {
r900.Unkn3 = uint8(unkn3)
r900.Leak = uint8(leak)
r900.LeakNow = uint8(leaknow)
copy(r900.checksum[:], symbols[:16])
copy(r900.checksum[:], symbols[16:])

msgs = append(msgs, r900)
}
Expand Down

0 comments on commit c4340c3

Please sign in to comment.