From b854ee2372eeab705bb3d812a62ac31d45acd774 Mon Sep 17 00:00:00 2001 From: Riley Beckett Date: Fri, 24 Apr 2026 19:55:04 -0400 Subject: different args --- graphics.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'graphics.c') 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); -- cgit v1.2.3