diff options
Diffstat (limited to 'graphics/src/audio/parse/lex.rs')
| -rw-r--r-- | graphics/src/audio/parse/lex.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/src/audio/parse/lex.rs b/graphics/src/audio/parse/lex.rs index a349c53..9969c9e 100644 --- a/graphics/src/audio/parse/lex.rs +++ b/graphics/src/audio/parse/lex.rs @@ -12,8 +12,8 @@ pub enum Token { Eof, LineSeparator, Pause(usize), + PauseLen(u32), Jump(usize), - Tempo(u32), ChanSpec(ChanSpec), SetVolume(u8), SetPitch(u8), @@ -179,8 +179,8 @@ impl<'s> Lexer<'s> { '-' => self.next_pause()?, // jump 'j' => T::Jump(self.next_int()?), - // tempO - 'o' => T::Tempo(self.next_int()?), + // pause len + 'P' => T::PauseLen(self.next_int()?), // eof '\0' => T::Eof, // new line |