mirror of
https://github.com/jwetzell/psn-go.git
synced 2026-08-15 04:13:49 +00:00
8 lines
160 B
Go
8 lines
160 B
Go
package encoders
|
|
|
|
func EncodeInfoSystemNameChunk(systemName string) []byte {
|
|
nameBytes := []uint8(systemName)
|
|
|
|
return EncodeChunk(0x0001, nameBytes, false)
|
|
}
|