aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorGuillaume Pasquet <dev@etenil.net>2019-07-07 23:37:22 +0100
committerGuillaume Pasquet <dev@etenil.net>2019-07-07 23:37:22 +0100
commitcaec9ec0841bf4e487921da1b894fbdeea584dc5 (patch)
tree5005135c2056cf366d903bf784d55c86a94d84d8 /src/main.rs
parentb454904e25e587267ffdbac494d99835eb7d13ad (diff)
Better rendering.
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 => " "
};