Skip to content

Commit

Permalink
Fix i8 conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
shanemadden committed Sep 6, 2024
1 parent 4f01f5c commit 748fe88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/local/room_xy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ impl fmt::Display for RoomXY {

impl From<RoomXY> for (u8, u8) {
fn from(xy: RoomXY) -> (u8, u8) {
(xy.x.u8(), xy.y.())
(xy.x.u8(), xy.y.u8())
}
}

Expand Down

0 comments on commit 748fe88

Please sign in to comment.