Fix a mistake with log's data value

This commit is contained in:
Thinkofname 2016-03-25 14:26:55 +00:00
parent c8a2914cc2
commit 63da7e5452
1 changed files with 2 additions and 2 deletions

View File

@ -502,8 +502,8 @@ impl Axis {
fn data(&self) -> usize {
match *self {
Axis::Y => 0,
Axis::Z => 1,
Axis::X => 2,
Axis::Z => 2,
Axis::X => 1,
Axis::None => 3,
}
}