From f40f272107ff9e8cfe96f3a531944e7cc411cee6 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 15 Nov 2023 23:58:39 -0800 Subject: [PATCH] Fixed build --- test/testcontroller.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testcontroller.c b/test/testcontroller.c index ea8f3e5ad..3dbafb596 100644 --- a/test/testcontroller.c +++ b/test/testcontroller.c @@ -1402,7 +1402,7 @@ static void DrawBindingTips(SDL_Renderer *renderer) if (binding_element != action_delete && bound_delete) { SDL_snprintf(dynamic_text, sizeof(dynamic_text), "(press %s to skip, %s to go back, %s to delete, and ESC to cancel)", GetButtonLabel(type, action_forward), GetButtonLabel(type, action_backward), GetButtonLabel(type, action_delete)); } else { - SDL_snprintf(dynamic_text, sizeof(dynamic_text), "(press %s to skip, %s to go back, SPACE to delete, and ESC to cancel)", GetButtonLabel(type, action_forward), GetButtonLabel(type, action_backward), GetButtonLabel(type, action_delete)); + SDL_snprintf(dynamic_text, sizeof(dynamic_text), "(press %s to skip, %s to go back, SPACE to delete, and ESC to cancel)", GetButtonLabel(type, action_forward), GetButtonLabel(type, action_backward)); } text = dynamic_text; } else {