diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-18 12:04:57 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-18 12:04:57 -0500 |
| commit | 860977e8b4aa3e101d5017a60ccbf9475ce1b32a (patch) | |
| tree | 275ccb5a3b9067b04b924daf9e69ecde8efd0f75 /graphics | |
| parent | wasm: add build version/date (diff) | |
| download | DungeonCrawl-860977e8b4aa3e101d5017a60ccbf9475ce1b32a.tar.gz DungeonCrawl-860977e8b4aa3e101d5017a60ccbf9475ce1b32a.tar.bz2 DungeonCrawl-860977e8b4aa3e101d5017a60ccbf9475ce1b32a.zip | |
fix whitespace alignment
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 a03d545..02bc61c 100644 --- a/graphics/src/render.rs +++ b/graphics/src/render.rs @@ -50,7 +50,7 @@ macro_rules! vec2 { macro_rules! draw_text { ($self:ident, $r:expr, $x:expr, $y:expr, $($arg:tt)*) => {{ - let mut buffer = [0u8; MAX_TEXT_LEN]; + let mut buffer = [0u8; MAX_TEXT_LEN]; let _ = writeln!(&mut buffer[..], $($arg)*); $self.draw_text($r, &buffer, $x, $y); }}; |