diff options
Diffstat (limited to 'pkg/messages/types/svcSetView.go')
| -rw-r--r-- | pkg/messages/types/svcSetView.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/messages/types/svcSetView.go b/pkg/messages/types/svcSetView.go index bdb6203..a60d547 100644 --- a/pkg/messages/types/svcSetView.go +++ b/pkg/messages/types/svcSetView.go | |||
| @@ -2,7 +2,6 @@ package messages | |||
| 2 | 2 | ||
| 3 | import ( | 3 | import ( |
| 4 | "github.com/pektezol/bitreader" | 4 | "github.com/pektezol/bitreader" |
| 5 | "github.com/pektezol/demoparser/pkg/writer" | ||
| 6 | ) | 5 | ) |
| 7 | 6 | ||
| 8 | type SvcSetView struct { | 7 | type SvcSetView struct { |
| @@ -13,6 +12,6 @@ func ParseSvcSetView(reader *bitreader.Reader) SvcSetView { | |||
| 13 | svcSetView := SvcSetView{ | 12 | svcSetView := SvcSetView{ |
| 14 | EntityIndex: uint16(reader.TryReadBits(11)), | 13 | EntityIndex: uint16(reader.TryReadBits(11)), |
| 15 | } | 14 | } |
| 16 | writer.TempAppendLine("\t\tEntity Index: %d", svcSetView.EntityIndex) | 15 | |
| 17 | return svcSetView | 16 | return svcSetView |
| 18 | } | 17 | } |