forked from len0rd/rockbox
SDL: fix typo
BUTTON_LEFT is a rockbox define, we must use SDL_BUTTON_LEFT git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27367 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1edfe3fd47
commit
0b86dda310
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ static void mouse_event(SDL_MouseButtonEvent *event, bool button_up)
|
|||
break;
|
||||
}
|
||||
|
||||
if (debug_wps && event->button == BUTTON_LEFT)
|
||||
if (debug_wps && event->button == SDL_BUTTON_LEFT)
|
||||
{
|
||||
int m_x, m_y;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue