aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 618327f..ae32474 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -19,7 +19,8 @@ use world::{World, GameWorld, TileType};
fn draw_block(window: &Window, block: &TileType) {
let repr = match block {
TileType::Floor => ".",
- TileType::Wall => "0",
+ TileType::Wall => "█",
+ TileType::Corridor => "#",
TileType::Empty => " "
};