From 40037afce125829196094bf7bc05fe8de6cdeb36 Mon Sep 17 00:00:00 2001 From: Ricardo Cruz Date: Thu, 13 May 2004 17:50:51 +0000 Subject: [PATCH] Up was moving to down and down to up - fixed. SVN-Revision: 1164 --- src/leveleditor.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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: -- 2.11.0