Sfoglia il codice sorgente

Merge pull request #462 from a3f/develop

InitWindow: return false if no monitor found
pull/463/head
Ray 7 anni fa
committed by GitHub
parent
commit
2ace360230
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 7 aggiunte e 1 eliminazioni
  1. +7
    -1
      src/core.c

+ 7
- 1
src/core.c Vedi File

@ -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;

Caricamento…
Annulla
Salva