From 3016f0c53ec4c8414ef1c24e7414e8f23a4425d5 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Mon, 4 Jan 2021 14:44:33 +1100 Subject: [PATCH] [client] fix invalid method names --- client/renderers/EGL/egl.c | 2 +- client/renderers/OpenGL/opengl.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/renderers/EGL/egl.c b/client/renderers/EGL/egl.c index 36b888bd..4816ddbf 100644 --- a/client/renderers/EGL/egl.c +++ b/client/renderers/EGL/egl.c @@ -116,7 +116,7 @@ static struct Option egl_options[] = .description = "Enable vsync", .type = OPTION_TYPE_BOOL, .value.x_bool = false, - .validator = &vsync_option_validator + .validator = &egl_vsync_option_validator }, { .module = "egl", diff --git a/client/renderers/OpenGL/opengl.c b/client/renderers/OpenGL/opengl.c index f99fbf8d..4a60598d 100644 --- a/client/renderers/OpenGL/opengl.c +++ b/client/renderers/OpenGL/opengl.c @@ -74,7 +74,7 @@ static struct Option opengl_options[] = .description = "Enable vsync", .type = OPTION_TYPE_BOOL, .value.x_bool = false, - .validator = &vsync_option_validator + .validator = &opengl_vsync_option_validator }, { .module = "opengl",