1
0
mirror of https://bitbucket.org/s_l_teichmann/mtsatellite synced 2025-04-03 02:40:22 +02:00

Fix zstd decoding

This commit is contained in:
Sascha L. Teichmann 2024-01-06 02:27:45 +01:00
parent 8a344b5a6d
commit fa0ec06e36

@ -160,7 +160,7 @@ func decode29(data []byte, colors *Colors) (*DecodedBlock, error) {
return nil, err return nil, err
} }
content, err := dec.DecodeAll(data, nil) content, err := dec.DecodeAll(data[1:], nil)
if err != nil { if err != nil {
return nil, err return nil, err
} }