aboutsummaryrefslogtreecommitdiff
path: root/graphics.c
diff options
context:
space:
mode:
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);