diff --git a/common/friend_code.go b/common/friend_code.go index d208c76..4f19241 100644 --- a/common/friend_code.go +++ b/common/friend_code.go @@ -46,7 +46,7 @@ func crc8(data []byte) byte { func getCRCType(gameId string) (crcType byte, reverse bool) { reverse = false - if strings.HasPrefix(gameId, "RSB") { + if strings.HasPrefix(gameId, "RSB") || strings.HasPrefix(gameId, "RPB") { crcType = fcCRC8 return }