From 2c057e331f1695190ce5b11a5a107e2266c49f54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Tue, 21 Oct 2025 18:11:24 -0700 Subject: [PATCH] Cleanup. --- examples/common/entry/entry.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/common/entry/entry.cpp b/examples/common/entry/entry.cpp index 3505e526c..6350e76f6 100644 --- a/examples/common/entry/entry.cpp +++ b/examples/common/entry/entry.cpp @@ -800,7 +800,7 @@ restart: && needReset) { _reset = s_reset; - BX_TRACE("bgfx::reset(%d, %d, 0x%x)", _width, _height, _reset) + BX_TRACE("bgfx::reset(%d, %d, 0x%x)", _width, _height, _reset); bgfx::reset(_width, _height, _reset); inputSetMouseResolution(uint16_t(_width), uint16_t(_height) ); } @@ -980,7 +980,7 @@ restart: if (needReset) { _reset = s_reset; - BX_TRACE("bgfx::reset(%d, %d, 0x%x)", s_window[0].m_width, s_window[0].m_height, _reset) + BX_TRACE("bgfx::reset(%d, %d, 0x%x)", s_window[0].m_width, s_window[0].m_height, _reset); bgfx::reset(s_window[0].m_width, s_window[0].m_height, _reset); inputSetMouseResolution(uint16_t(s_window[0].m_width), uint16_t(s_window[0].m_height) ); }