[client] fix invalid method names

This commit is contained in:
Geoffrey McRae 2021-01-04 14:44:33 +11:00
parent 4bceaf5505
commit 3016f0c53e
2 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ static struct Option egl_options[] =
.description = "Enable vsync", .description = "Enable vsync",
.type = OPTION_TYPE_BOOL, .type = OPTION_TYPE_BOOL,
.value.x_bool = false, .value.x_bool = false,
.validator = &vsync_option_validator .validator = &egl_vsync_option_validator
}, },
{ {
.module = "egl", .module = "egl",

View File

@ -74,7 +74,7 @@ static struct Option opengl_options[] =
.description = "Enable vsync", .description = "Enable vsync",
.type = OPTION_TYPE_BOOL, .type = OPTION_TYPE_BOOL,
.value.x_bool = false, .value.x_bool = false,
.validator = &vsync_option_validator .validator = &opengl_vsync_option_validator
}, },
{ {
.module = "opengl", .module = "opengl",