aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backends/platform/wii/main.cpp3
-rw-r--r--backends/platform/wii/osystem_gfx.cpp6
2 files changed, 7 insertions, 2 deletions
diff --git a/backends/platform/wii/main.cpp b/backends/platform/wii/main.cpp
index 644726ac44..a0a28501cc 100644
--- a/backends/platform/wii/main.cpp
+++ b/backends/platform/wii/main.cpp
@@ -66,6 +66,7 @@ static void show_console(int code) {
printf("ScummVM exited abnormally (%d).\n", code);
+ gfx_frame_abort();
if (!gfx_frame_start())
return;
@@ -141,7 +142,7 @@ int main(int argc, char *argv[]) {
PAD_Init();
AUDIO_Init(NULL);
- gfx_video_init(GFX_STANDARD_AUTO, GFX_MODE_DEFAULT);
+ gfx_video_init(NULL);
gfx_init();
gfx_con_init(NULL);
diff --git a/backends/platform/wii/osystem_gfx.cpp b/backends/platform/wii/osystem_gfx.cpp
index ea3487eacf..fdb32de362 100644
--- a/backends/platform/wii/osystem_gfx.cpp
+++ b/backends/platform/wii/osystem_gfx.cpp
@@ -153,9 +153,13 @@ void OSystem_Wii::switchVideoMode(int mode) {
printf("switchVideoMode %d\n", mode);
if (map[_actualGraphicsMode].mode != map[mode].mode) {
+ GXRModeObj obj;
+
gfx_video_deinit();
- gfx_video_init(GFX_STANDARD_AUTO, map[mode].mode);
+ gfx_video_get_modeobj(&obj, GFX_STANDARD_AUTO, map[mode].mode);
+ gfx_video_init(&obj);
gfx_init();
+ gfx_con_init(NULL);
}
_actualGraphicsMode = mode;