From 4c99ac2c7426ea31e61b1c060fb34d4538244e68 Mon Sep 17 00:00:00 2001 From: "fabio.olimpieri" Date: Sat, 26 Oct 2013 11:49:01 +0000 Subject: [PATCH] Reduced sensitivity in mouse emulation by wiimote --- SDL/src/video/wii/SDL_wiivideo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SDL/src/video/wii/SDL_wiivideo.c b/SDL/src/video/wii/SDL_wiivideo.c index 109ed5c..6cc82bd 100644 --- a/SDL/src/video/wii/SDL_wiivideo.c +++ b/SDL/src/video/wii/SDL_wiivideo.c @@ -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 */