Browse Source

Fix dbg message

master
Riyyi 3 years ago
parent
commit
9df926857b
  1. 2
      inferno/src/inferno/application.cpp

2
inferno/src/inferno/application.cpp

@ -109,7 +109,7 @@ namespace Inferno {
// Suppress unused warning
(void)e;
dbg(Log::Info) << "WindowResizeEvent %dx%d triggered", e.getWidth(), e.getHeight();
dbgln(Log::Info, "WindowResizeEvent {}x{} triggered", e.getWidth(), e.getHeight());
m_window->getContext()->setViewport(0, 0, e.getWidth(), e.getHeight());

Loading…
Cancel
Save