From 1def740a7c589df451ae8d58c7cb4fe7885f1840 Mon Sep 17 00:00:00 2001 From: Branimir Karadzic Date: Sat, 11 Oct 2014 14:14:12 -0700 Subject: [PATCH] Fixed unused variable warning. --- src/bgfx.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bgfx.cpp b/src/bgfx.cpp index 856feaa6..af71cc8c 100644 --- a/src/bgfx.cpp +++ b/src/bgfx.cpp @@ -1332,6 +1332,7 @@ namespace bgfx VER_SET_CONDITION(cond, VER_MINORVERSION, VER_GREATER_EQUAL); return !!VerifyVersionInfoA(&ovi, VER_MAJORVERSION | VER_MINORVERSION, cond); #else + BX_UNUSED(_winver); return false; #endif // BX_PLATFORM_WINDOWS }