From 0533c60e560db6c5eedfc1acf7c8817acfd99353 Mon Sep 17 00:00:00 2001 From: "simon.kagstrom" Date: Sun, 10 May 2009 14:54:27 +0000 Subject: [PATCH] Make 16bpp the default mode --- SDL/src/video/wii/SDL_wiivideo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SDL/src/video/wii/SDL_wiivideo.c b/SDL/src/video/wii/SDL_wiivideo.c index 00e44e5..0fceb83 100644 --- a/SDL/src/video/wii/SDL_wiivideo.c +++ b/SDL/src/video/wii/SDL_wiivideo.c @@ -237,8 +237,8 @@ int WII_VideoInit(_THIS, SDL_PixelFormat *vformat) mode_320.h = mode_640.h / 2; // Set the current format. - vformat->BitsPerPixel = 8; - vformat->BytesPerPixel = 1; + vformat->BitsPerPixel = 16; + vformat->BytesPerPixel = 2; this->hidden->buffer = NULL; this->hidden->width = 0;