diff options
Diffstat (limited to 'pkg/messages/types/svcFixAngle.go')
| -rw-r--r-- | pkg/messages/types/svcFixAngle.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/messages/types/svcFixAngle.go b/pkg/messages/types/svcFixAngle.go index 56acf04..675c50e 100644 --- a/pkg/messages/types/svcFixAngle.go +++ b/pkg/messages/types/svcFixAngle.go | |||
| @@ -7,7 +7,7 @@ type SvcFixAngle struct { | |||
| 7 | Angle []int16 | 7 | Angle []int16 |
| 8 | } | 8 | } |
| 9 | 9 | ||
| 10 | func ParseSvcFixAngle(reader *bitreader.ReaderType) SvcFixAngle { | 10 | func ParseSvcFixAngle(reader *bitreader.Reader) SvcFixAngle { |
| 11 | return SvcFixAngle{ | 11 | return SvcFixAngle{ |
| 12 | Relative: reader.TryReadBool(), | 12 | Relative: reader.TryReadBool(), |
| 13 | Angle: []int16{int16(reader.TryReadBits(16)), int16(reader.TryReadBits(16)), int16(reader.TryReadBits(16))}, | 13 | Angle: []int16{int16(reader.TryReadBits(16)), int16(reader.TryReadBits(16)), int16(reader.TryReadBits(16))}, |