Skip to content

Commit

Permalink
Readd remainder for unparsed t18
Browse files Browse the repository at this point in the history
  • Loading branch information
anarelion committed Nov 8, 2023
1 parent 3fef037 commit 6600220
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wld/fragments/t18_track_def.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::{Decoder, Settings};
#[derive(Clone, Debug)]
pub struct WldTrackDef {
pub name: Option<String>,
// pub remainder: Bytes,
pub remainder: Bytes,
}

impl Decoder<Settings> for WldTrackDef {
Expand All @@ -19,7 +19,7 @@ impl Decoder<Settings> for WldTrackDef {

Ok(Self {
name,
// remainder: input.clone(),
remainder: input.clone(),
})
}
}

0 comments on commit 6600220

Please sign in to comment.