Render letter tiles as uppercase

This commit is contained in:
Alex Page 2022-01-29 21:55:15 -05:00
parent 62905dc330
commit 576bd76bd6

View file

@ -419,7 +419,7 @@ pub fn tile_data(tile: TileType) -> TileData {
blink: false,
},
TileType::Letter(c) => TileData {
glyph: to_cp437(c),
glyph: to_cp437(c.to_ascii_uppercase()),
serialized_char: c,
color_fg: vga::WHITE_BRIGHT,
color_bg: vga::YELLOW,