From 6104ab4467e3405249503e15d105f66ddee5e6fb Mon Sep 17 00:00:00 2001 From: Mark Allyn Date: Thu, 2 Apr 2026 10:37:42 -0700 Subject: [PATCH] no fullscreen --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 286eff7..63fd7cb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -420,7 +420,7 @@ int main() GLFWwindow* win = glfwCreateWindow( mode->width, mode->height, "Radar Test — Features 1 & 2", - mon, nullptr); + nullptr, nullptr); if (!win) { std::cerr << "Window create failed\n"; glfwTerminate(); return 1; } glfwMakeContextCurrent(win);