From 182666321a395d107ea9c4c49d757ba2fdfffec6 Mon Sep 17 00:00:00 2001 From: Matthew Fioravante Date: Thu, 30 Apr 2020 19:06:16 -0400 Subject: [PATCH] char32_t fix for logger --- src/window_message.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window_message.cpp b/src/window_message.cpp index 4f5702ac8c3..7de14ecb64d 100644 --- a/src/window_message.cpp +++ b/src/window_message.cpp @@ -501,7 +501,7 @@ void Window_Message::UpdateMessage() { void Window_Message::DrawGlyph(Font& font, const Bitmap& system, char32_t glyph, bool instant_speed, bool is_exfont) { #ifdef EP_DEBUG_MESSAGE - Output::Debug("Msg Draw Glyph {:#x} {}", glyph, instant_speed); + Output::Debug("Msg Draw Glyph {:#x} {}", uint32_t(glyph), instant_speed); #endif auto rect = Text::Draw(*contents, contents_x, contents_y, font, system, text_color, glyph, is_exfont);