aboutsummaryrefslogtreecommitdiff
path: root/graphics.c
diff options
context:
space:
mode:
authorRiley Beckett <rbeckettvt@gmail.com>2026-04-24 19:55:04 -0400
committerRiley Beckett <rbeckettvt@gmail.com>2026-04-24 19:55:04 -0400
commitb854ee2372eeab705bb3d812a62ac31d45acd774 (patch)
treec6b4d35ac4a1e3686ed868f845c929edb1dac1ec /graphics.c
parentbbfbacc75e9bcb8a8b9d81b5f2a06567734c2873 (diff)
different args
Diffstat (limited to 'graphics.c')
-rw-r--r--graphics.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics.c b/graphics.c
index 8343778..3a43fca 100644
--- a/graphics.c
+++ b/graphics.c
@@ -106,7 +106,7 @@ bool init_gl(client_state* state) {
return false;
}
- if (state->verbose) {
+ if (state->verbose >= 1) { /* */
fprintf(stderr, "EGL version %u.%u\n", major, minor);
}
}
@@ -139,7 +139,7 @@ bool init_gl(client_state* state) {
return false;
}
- if (state->verbose) {
+ if (state->verbose >= 1) {
GLint major, minor;
glGetIntegerv(GL_MAJOR_VERSION, &major);
glGetIntegerv(GL_MINOR_VERSION, &minor);