Skip to content

Commit

Permalink
fix typo in error message about sdl_glsl support
Browse files Browse the repository at this point in the history
  • Loading branch information
karlstav committed Sep 3, 2023
1 parent fe95b75 commit c3b2d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ bool validate_config(struct config_params *p, struct error_s *error) {
if (strcmp(outputMethod, "sdl_glsl") == 0) {
p->output = OUTPUT_SDL_GLSL;
#ifndef SDL_GLSL
write_errorf(error, "cava was built without sdl support, install sdl dev files "
write_errorf(error, "cava was built without opengl support, install opengl dev files "
"and run make clean && ./configure && make again\n");
return false;
#endif
Expand Down

0 comments on commit c3b2d66

Please sign in to comment.