From 2dc4d231519e255afdc3a612fc28c3615ed9605e Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 28 Jun 2024 20:36:30 -0500 Subject: [PATCH] GLFW host changes --- src/dawnglfw/host/DawnGLFWHost.hpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/dawnglfw/host/DawnGLFWHost.hpp b/src/dawnglfw/host/DawnGLFWHost.hpp index 19b8cfdb..80eb4ac6 100644 --- a/src/dawnglfw/host/DawnGLFWHost.hpp +++ b/src/dawnglfw/host/DawnGLFWHost.hpp @@ -10,8 +10,13 @@ #include "game/Game.hpp" #include "display/BackBuffer.hpp" -#define DAWN_GLFW_WIDTH_DEFAULT 800 -#define DAWN_GLFW_HEIGHT_DEFAULT 600 +#ifndef DAWN_GLFW_WIDTH_DEFAULT + #define DAWN_GLFW_WIDTH_DEFAULT 800 +#endif + +#ifndef DAWN_GLFW_HEIGHT_DEFAULT + #define DAWN_GLFW_HEIGHT_DEFAULT 600 +#endif namespace Dawn { enum class DawnGLFWInitResult {