aboutsummaryrefslogtreecommitdiff
path: root/src/itfile.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/itfile.rs')
-rw-r--r--src/itfile.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/itfile.rs b/src/itfile.rs
index 12788b3..57d235d 100644
--- a/src/itfile.rs
+++ b/src/itfile.rs
@@ -53,7 +53,7 @@ impl Header
fn time_signature(self: &Self) -> Option<(u32, u32)>
{
if self.special & 0x4 != 0 && self.pat_highlight != 0
- { Some(((self.pat_highlight >> 8) as u32, (self.pat_highlight & 0xff) as u32)) }
+ { Some(((self.pat_highlight & 0xff) as u32, (self.pat_highlight >> 8) as u32)) }
else { None }
}
}