From a7fce06280f1669b11283b489d616f59fc5295ad Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sun, 16 Aug 2015 01:25:01 -0700 Subject: [PATCH] Wii: Fix overscan and path --- src/platform/wii/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/platform/wii/main.c b/src/platform/wii/main.c index a4898335a..9c0023822 100644 --- a/src/platform/wii/main.c +++ b/src/platform/wii/main.c @@ -164,14 +164,14 @@ int main() { #endif char path[256]; - guOrtho(proj, 0, 240, 0, 400, 0, 300); + guOrtho(proj, -20, 220, 0, 400, 0, 300); GX_LoadProjectionMtx(proj, GX_ORTHOGRAPHIC); struct GUIParams params = { - 400, 240, + 400, 230, font, _drawStart, _drawEnd, _pollInput }; - if (!selectFile(¶ms, "sd:", path, sizeof(path), "gba") || !GBAWiiLoadGame(path)) { + if (!selectFile(¶ms, "/", path, sizeof(path), "gba") || !GBAWiiLoadGame(path)) { free(renderer.outputBuffer); GUIFontDestroy(font); return 1;