浏览代码

typo, #elif instead of #else, fixed

Peter Particle 8 年之前
父节点
当前提交
337019a68f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/vulkan_example/main.cpp

+ 1 - 1
examples/vulkan_example/main.cpp

@@ -87,7 +87,7 @@ static void resize_vulkan(GLFWwindow* /*window*/, int w, int h)
 
 #ifdef IMGUI_UNLIMITED_FRAME_RATE
         info.presentMode = VK_PRESENT_MODE_IMMEDIATE_KHR;
-#elif
+#else
         info.presentMode = VK_PRESENT_MODE_FIFO_KHR;
 #endif
         info.clipped = VK_TRUE;