diff --git a/src/tile_data.rs b/src/tile_data.rs index db8714f..775889b 100644 --- a/src/tile_data.rs +++ b/src/tile_data.rs @@ -4,7 +4,7 @@ use crate::graphics::vga_color as vga; #[derive(PartialEq, Copy, Clone)] pub struct TileData { - pub glyph: u16, + pub glyph: FontCharType, pub color_fg: (u8, u8, u8), pub color_bg: (u8, u8, u8), pub serialized_char: char,