From 80b6202ec0fa68136aab75d8e7f284b273165768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Mon, 27 Apr 2015 19:38:48 -0700 Subject: [PATCH] Fixed switch without case warning. --- src/ovr.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ovr.cpp b/src/ovr.cpp index beaf20d68..8a00608ae 100644 --- a/src/ovr.cpp +++ b/src/ovr.cpp @@ -65,6 +65,7 @@ namespace bgfx break; #endif // BGFX_CONFIG_RENDERER_OPENGL + case ovrRenderAPI_None: default: BX_CHECK(false, "You should not be here!"); break;