From 76e47c02c807f6dc774bfe3101a4d3f83dcb0ed7 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Tue, 27 Oct 2015 19:34:07 -0400 Subject: [PATCH] Changed gfxSwapBuffers() to gfxSwapBuffersGpu() in consoleInit(). This fixes the black-screen issue with the text-console on certain systems(such as old3ds v9.0-v9.2). --- libctru/source/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libctru/source/console.c b/libctru/source/console.c index e7ea8bd..e195638 100644 --- a/libctru/source/console.c +++ b/libctru/source/console.c @@ -528,7 +528,7 @@ PrintConsole* consoleInit(gfxScreen_t screen, PrintConsole* console) { gfxSetScreenFormat(screen,GSP_RGB565_OES); gfxSetDoubleBuffering(screen,false); - gfxSwapBuffers(); + gfxSwapBuffersGpu(); gspWaitForVBlank(); console->frameBuffer = (u16*)gfxGetFramebuffer(screen, GFX_LEFT, NULL, NULL);