Browse Source

Reenable antialiasing (typo)

tags/v0.6.1
Andrew Belt 6 years ago
parent
commit
ecafef8a3f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/window.cpp

+ 1
- 1
src/window.cpp View File

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


Loading…
Cancel
Save