summaryrefslogtreecommitdiff
path: root/src/systems
diff options
context:
space:
mode:
Diffstat (limited to 'src/systems')
-rw-r--r--src/systems/view.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systems/view.rs b/src/systems/view.rs
index 9a4dbf9..9ab6faf 100644
--- a/src/systems/view.rs
+++ b/src/systems/view.rs
@@ -103,7 +103,7 @@ impl <'a> System<'a> for View {
}
}
-fn draw_room(cells: HashMap<Pos, Vec<Visible>>, (width, height): (i32, i32)) -> (Vec<usize>, Vec<Vec<String>>){
+fn draw_room(cells: HashMap<Pos, Vec<Visible>>, (width, height): (i64, i64)) -> (Vec<usize>, Vec<Vec<String>>){
let size = width * height;
let mut values :Vec<usize> = Vec::with_capacity(size as usize);