From: Holger Schemel Date: Fri, 10 Mar 2017 14:49:53 +0000 (+0100) Subject: fixed buggy zoom gadget info text in level editor X-Git-Tag: 4.1.0.0~167 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=82d9e85c18ff733092fa5a86187b38564617b7de fixed buggy zoom gadget info text in level editor --- 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);