From: Ricardo Cruz Date: Thu, 13 May 2004 17:50:51 +0000 (+0000) Subject: Up was moving to down and down to up - fixed. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=40037afce125829196094bf7bc05fe8de6cdeb36;p=supertux.git Up was moving to down and down to up - fixed. SVN-Revision: 1164 --- diff --git a/src/leveleditor.cpp b/src/leveleditor.cpp index 8b8e66b9b..93160de35 100644 --- a/src/leveleditor.cpp +++ b/src/leveleditor.cpp @@ -1546,11 +1546,11 @@ void le_checkevents() switch(le_move_up_bt->get_state()) { case BUTTON_PRESSED: - pos_y += 192; + pos_y -= 192; show_minimap = true; break; case BUTTON_HOVER: - pos_y += 32; + pos_y -= 32; show_minimap = true; break; case BUTTON_CLICKED: @@ -1563,11 +1563,11 @@ void le_checkevents() switch(le_move_down_bt->get_state()) { case BUTTON_PRESSED: - pos_y -= 192; + pos_y += 192; show_minimap = true; break; case BUTTON_HOVER: - pos_y -= 32; + pos_y += 32; show_minimap = true; break; case BUTTON_CLICKED: