Skip to content

Commit

Permalink
char32_t fix for logger
Browse files Browse the repository at this point in the history
  • Loading branch information
fmatthew5876 committed Apr 30, 2020
1 parent 404237b commit 1826663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/window_message.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 1826663

Please sign in to comment.