diff options
| author | alf9310 <alf9310@rit.edu> | 2025-11-10 00:50:48 -0500 |
|---|---|---|
| committer | alf9310 <alf9310@rit.edu> | 2025-11-10 00:50:48 -0500 |
| commit | 458d62ef8c86bef3c61d6784d9ea5bbab42c4b70 (patch) | |
| tree | d9e390cb1709e5c2d385edfc1c75cce310fda9b7 /graphics | |
| parent | main: Slight merge conflict with Air resolved (diff) | |
| download | DungeonCrawl-458d62ef8c86bef3c61d6784d9ea5bbab42c4b70.tar.gz DungeonCrawl-458d62ef8c86bef3c61d6784d9ea5bbab42c4b70.tar.bz2 DungeonCrawl-458d62ef8c86bef3c61d6784d9ea5bbab42c4b70.zip | |
main: hallway color change
Diffstat (limited to 'graphics')
| -rw-r--r-- | graphics/src/render.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/src/render.rs b/graphics/src/render.rs index 7e9a74b..1c936bd 100644 --- a/graphics/src/render.rs +++ b/graphics/src/render.rs @@ -411,7 +411,7 @@ impl Renderer { let color = match tile { Tile::Wall => Color::DARKGRAY, Tile::Room => Color::GRAY, - Tile::Hallway => Color::LIGHTGRAY, + Tile::Hallway => Color::GRAY, Tile::Stairs => Color::WHITE, }; rt.draw_pixel(x.into(), y.into(), color); |