From e1914779a9cd75a22ffe37f44c3c6a7be584be1b Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Tue, 5 Jun 2018 07:00:56 -0400 Subject: [PATCH] Reenable antialiasing (typo) --- src/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.cpp b/src/window.cpp index 5c78e965..fbdc67d2 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -379,7 +379,7 @@ void windowInit() { glfwSetWindowSizeLimits(gWindow, 640, 480, GLFW_DONT_CARE, GLFW_DONT_CARE); // Set up NanoVG - int nvgFlags = 0;//NVG_ANTIALIAS; + int nvgFlags = NVG_ANTIALIAS; #if defined NANOVG_GL2 gVg = nvgCreateGL2(nvgFlags); #elif defined NANOVG_GL3