From 537ea29c41789140d91c63b44667dac49c49fd64 Mon Sep 17 00:00:00 2001 From: dborth Date: Sun, 12 Aug 2012 18:43:06 +0000 Subject: [PATCH] use efbHeight instead of xfbHeight (issue 47) --- 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 ef2f1b9..109ed5c 100644 --- a/SDL/src/video/wii/SDL_wiivideo.c +++ b/SDL/src/video/wii/SDL_wiivideo.c @@ -277,7 +277,7 @@ static int WII_VideoInit(_THIS, SDL_PixelFormat *vformat) { // Set up the modes. mode_640.w = vmode->fbWidth; - mode_640.h = vmode->xfbHeight; + mode_640.h = vmode->efbHeight; mode_320.w = mode_640.w / 2; mode_320.h = mode_640.h / 2;