Restore no texture filter on FONT_MENU

This commit is contained in:
Agent X 2024-06-25 15:17:48 -04:00
parent 111f03dfc0
commit 8d79a47490
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ static void djui_font_title_render_char(char* c) {
u32 ty = index / 16;
extern ALIGNED8 const u8 texture_font_title[];
djui_gfx_render_texture_tile(texture_font_title, 1024, 512, 32, tx * 64 - 8, ty * 64 - 4, 64, 64, true);
djui_gfx_render_texture_tile(texture_font_title, 1024, 512, 32, tx * 64, ty * 64, 64, 64, false);
}
static f32 djui_font_title_char_width(char* text) {