forked from len0rd/rockbox
Fix delta from r22843, due to unintended FP usage
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22844 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2f3e0fbcd0
commit
59368e1750
1 changed files with 2 additions and 2 deletions
|
@ -27,8 +27,8 @@
|
||||||
#include "logf.h"
|
#include "logf.h"
|
||||||
|
|
||||||
/* Size of the 'dead zone' around each 3x3 button */
|
/* Size of the 'dead zone' around each 3x3 button */
|
||||||
#define BUTTON_MARGIN_X LCD_WIDTH * 0.03
|
#define BUTTON_MARGIN_X (int)(LCD_WIDTH * 0.03)
|
||||||
#define BUTTON_MARGIN_Y LCD_HEIGHT * 0.03
|
#define BUTTON_MARGIN_Y (int)(LCD_HEIGHT * 0.03)
|
||||||
|
|
||||||
static enum touchscreen_mode current_mode = TOUCHSCREEN_POINT;
|
static enum touchscreen_mode current_mode = TOUCHSCREEN_POINT;
|
||||||
static const int touchscreen_buttons[3][3] =
|
static const int touchscreen_buttons[3][3] =
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue