From 84220e2ed97d4ad6f39043941b8e2b3d480c042d Mon Sep 17 00:00:00 2001
From: Allanis <allanis@saracraft.net>
Date: Sun, 9 Mar 2014 21:21:49 +0000
Subject: [PATCH] [Change] Inverted zoom in/out.

---
 src/map.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/map.c b/src/map.c
index 30cbb22..ed87c97 100644
--- a/src/map.c
+++ b/src/map.c
@@ -420,9 +420,9 @@ static void map_mouse(unsigned int wid, SDL_Event* event, double mx, double my)
   switch(event->type) {
   case SDL_MOUSEBUTTONDOWN:
     if(event->button.button == SDL_BUTTON_WHEELUP)
-      map_buttonZoom(0, "btnZoomOut");
-    else if(event->button.button == SDL_BUTTON_WHEELDOWN)
       map_buttonZoom(0, "btnZoomIn");
+    else if(event->button.button == SDL_BUTTON_WHEELDOWN)
+      map_buttonZoom(0, "btnZoomOut");
 
     /* Selecting star system. */
     else {