From 1cf70cbcdde4f3230e35864c76fce0a42784cc88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Tue, 13 Jan 2015 22:49:39 -0800 Subject: [PATCH] Fixed compiler warning. --- src/bgfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bgfx.cpp b/src/bgfx.cpp index cf6026d1..3f2a6438 100644 --- a/src/bgfx.cpp +++ b/src/bgfx.cpp @@ -1361,7 +1361,7 @@ namespace bgfx VER_SET_CONDITION(cond, VER_MINORVERSION, s_condition[_op]); return !!VerifyVersionInfoA(&ovi, VER_MAJORVERSION | VER_MINORVERSION, cond); #else - BX_UNUSED(_version); + BX_UNUSED(_op, _version); return false; #endif // BX_PLATFORM_WINDOWS }