1
0
Fork 0
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:
Rafaël Carré 2010-07-10 02:50:16 +00:00
parent 1edfe3fd47
commit 0b86dda310

View file

@ -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;