Change array to plain member

* Some clang versions seem to complain about the storage for this being missing
  even if it's constexpr, since it's not important we make it a plain member.
This commit is contained in:
baldurk
2026-01-30 15:41:05 +00:00
parent 490935242d
commit db74623ed5
+1 -1
View File
@@ -79,7 +79,7 @@ struct OpenGLGraphicsTest : public GraphicsTest
GLuint DefaultTriProgram;
GLuint swapBlitFBO;
static constexpr GLfloat DefaultClearCol[] = {0.2f, 0.2f, 0.2f, 1.0f};
GLfloat DefaultClearCol[4] = {0.2f, 0.2f, 0.2f, 1.0f};
GraphicsWindow *mainWindow = NULL;
void *mainContext = NULL;