瀏覽代碼

InitWindow: return false if no monitor found

Otherwise we run into an assertion failure inside GLFW's glfwGetVideoMode.
Example:
http://www.cpantesters.org/cpan/report/b4ba5894-0bdb-11e8-841e-2c60b04e1d2d

This is related to #456.
pull/462/head
Ahmad Fatoum 6 年之前
父節點
當前提交
a976e76ae6
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: C3EAC3DE9321D59B
共有 1 個文件被更改,包括 7 次插入1 次删除
  1. +7
    -1
      src/core.c

+ 7
- 1
src/core.c 查看文件

@ -1733,7 +1733,13 @@ static bool InitGraphicsDevice(int width, int height)
// NOTE: Getting video modes is not implemented in emscripten GLFW3 version
#if defined(PLATFORM_DESKTOP)
// Find monitor resolution
const GLFWvidmode *mode = glfwGetVideoMode(glfwGetPrimaryMonitor());
GLFWmonitor *monitor = glfwGetPrimaryMonitor();
if (!monitor)
{
TraceLog(LOG_WARNING, "Failed to get monitor");
return false;
}
const GLFWvidmode *mode = glfwGetVideoMode(monitor);
displayWidth = mode->width;
displayHeight = mode->height;

Loading…
取消
儲存