X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Feditor.c;h=353170d8b15a519d1fc2273400f32bdc14e68c78;hp=d2e86eb9cd03982597207892e2ed726bc18ffac2;hb=f77b401b278dd2e2a91d316e0c0247d71353fee9;hpb=a641433815411c71d75ee47a73a44d0e4b422e60 diff --git a/src/editor.c b/src/editor.c index d2e86eb9..353170d8 100644 --- a/src/editor.c +++ b/src/editor.c @@ -11331,9 +11331,9 @@ static void HandleControlButtons(struct GadgetInfo *gi) case GADGET_ID_ZOOM: // zoom level editor tile size in or out (or reset to default size) - ed_tilesize = (button == 1 ? ed_tilesize / 2 : + ed_tilesize = (button == 1 ? ed_tilesize * 2 : button == 2 ? DEFAULT_EDITOR_TILESIZE : - button == 3 ? ed_tilesize * 2 : ed_tilesize); + button == 3 ? ed_tilesize / 2 : ed_tilesize); // limit zoom level by upper and lower bound ed_tilesize = MIN(MAX(MICRO_TILESIZE, ed_tilesize), TILESIZE);