Skip to content

Commit

Permalink
Reduced sensitivity in mouse emulation by wiimote
Browse files Browse the repository at this point in the history
  • Loading branch information
Oibaf66 committed Oct 26, 2013
1 parent 0637dc5 commit 4c99ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SDL/src/video/wii/SDL_wiivideo.c
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ static SDL_Surface *WII_SetVideoMode(_THIS, SDL_Surface *current,
currentwidth = current->w;
currentheight = current->h;
currentbpp = bpp;
WPAD_SetVRes(WPAD_CHAN_ALL, currentwidth*2, currentheight*2);
WPAD_SetVRes(WPAD_CHAN_ALL, currentwidth*1.5, currentheight*1.5);
draw_init();
StartVideoThread();
/* We're done */
Expand Down

0 comments on commit 4c99ac2

Please sign in to comment.