fix for TV display of console applications that are using OSScreen functions

This commit is contained in:
dimok789 2016-03-02 18:59:42 +01:00
parent d0316ab885
commit bb9a4c9d12
2 changed files with 18 additions and 1 deletions

3
.gitignore vendored
View File

@ -10,4 +10,5 @@
/sd_loader/build
/sd_loader/*.elf
/udp_debug_reader/obj
/udp_debug_reader/GeckoLog.txt
/udp_debug_reader/GeckoLog.txt
/installer/sd_loader.h

View File

@ -197,4 +197,20 @@ void Application::executeThread(void)
delete mainWindow;
delete fontSystem;
delete video;
//!------------------------------------------------------------------------------------------------------------
//! TODO: This is ugly and I don't really like it but I didn't find a better way for this to work.
//! It seems its necessary. to make one frame with max resolution to fix console application display ratio.
//!------------------------------------------------------------------------------------------------------------
video = new CVideo(GX2_TV_SCAN_MODE_1080P, GX2_DRC_SINGLE);
video->prepareDrcRendering();
video->drcDrawDone();
video->prepareTvRendering();
video->tvDrawDone();
video->tvEnable(true);
video->drcEnable(true);
video->waitForVSync();
video->tvEnable(false);
video->drcEnable(false);
delete video;
}