From 82d9e85c18ff733092fa5a86187b38564617b7de Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Fri, 10 Mar 2017 15:49:53 +0100 Subject: [PATCH] fixed buggy zoom gadget info text in level editor --- src/editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor.c b/src/editor.c index c07624c4..490be269 100644 --- a/src/editor.c +++ b/src/editor.c @@ -12909,7 +12909,7 @@ void PrintEditorGadgetInfoText(struct GadgetInfo *gi) else if (gi->custom_id == GADGET_ID_UNDO) sprintf(shortcut, " ('%c/Shift-U')", key); else if (gi->custom_id == GADGET_ID_ZOOM) - sprintf(shortcut, " ('%c', '0', '+')", key); + sprintf(shortcut, " ('%c', '0', '-')", key); else sprintf(shortcut, " ('%s%c')", (key >= 'A' && key <= 'Z' ? "Shift-" : ""), key); -- 2.34.1