summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Purchase <shotofadds@rockbox.org>2009-09-27 14:11:16 +0000
committerRob Purchase <shotofadds@rockbox.org>2009-09-27 14:11:16 +0000
commit59368e1750abcbe7c7d3611f8d0b1bb956a0505b (patch)
tree58a8e27e978a7c0253dda31e80071096f749e5ed
parent2f3e0fbcd05c13cf9faffa92773e7e4390ba0ab7 (diff)
downloadrockbox-59368e1750abcbe7c7d3611f8d0b1bb956a0505b.tar.gz
rockbox-59368e1750abcbe7c7d3611f8d0b1bb956a0505b.zip
Fix delta from r22843, due to unintended FP usage
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22844 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xfirmware/drivers/touchscreen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/touchscreen.c b/firmware/drivers/touchscreen.c
index bf63e488ec..9660e0cb9d 100755
--- a/firmware/drivers/touchscreen.c
+++ b/firmware/drivers/touchscreen.c
@@ -27,8 +27,8 @@
27#include "logf.h" 27#include "logf.h"
28 28
29/* Size of the 'dead zone' around each 3x3 button */ 29/* Size of the 'dead zone' around each 3x3 button */
30#define BUTTON_MARGIN_X LCD_WIDTH * 0.03 30#define BUTTON_MARGIN_X (int)(LCD_WIDTH * 0.03)
31#define BUTTON_MARGIN_Y LCD_HEIGHT * 0.03 31#define BUTTON_MARGIN_Y (int)(LCD_HEIGHT * 0.03)
32 32
33static enum touchscreen_mode current_mode = TOUCHSCREEN_POINT; 33static enum touchscreen_mode current_mode = TOUCHSCREEN_POINT;
34static const int touchscreen_buttons[3][3] = 34static const int touchscreen_buttons[3][3] =