From b1eb4098ee04c1bf201c0bf732d446f0c6e547a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Wed, 1 Feb 2017 21:51:53 -0800 Subject: [PATCH] Fixed warning. --- examples/common/entry/entry_windows.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/common/entry/entry_windows.cpp b/examples/common/entry/entry_windows.cpp index e8d7e8828..ca38c9208 100644 --- a/examples/common/entry/entry_windows.cpp +++ b/examples/common/entry/entry_windows.cpp @@ -144,7 +144,7 @@ namespace entry WindowHandle defaultWindow = { 0 }; - for (uint32_t ii = 0; ii < BX_COUNTOF(m_state); ++ii) + for (uint16_t ii = 0; ii < BX_COUNTOF(m_state); ++ii) { XINPUT_STATE state; DWORD result = XInputGetState(ii, &state);