From e3e8e2f920122a76201a4b23622f4f680a982495 Mon Sep 17 00:00:00 2001 From: z2442 Date: Fri, 18 Oct 2019 20:43:17 -0400 Subject: [PATCH] Fix loading text for large rom buffer --- Source/Core/ROMBuffer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/ROMBuffer.cpp b/Source/Core/ROMBuffer.cpp index 6487cf7c1..3d5ce632d 100644 --- a/Source/Core/ROMBuffer.cpp +++ b/Source/Core/ROMBuffer.cpp @@ -226,7 +226,7 @@ bool RomBuffer::Open() const u32 TEMP_BUFFER_SIZE {128 * 1024}; intraFont* ltn8 = intraFontLoad( "flash0:/font/ltn8.pgf", INTRAFONT_CACHE_ASCII); - intraFontSetStyle( ltn8, 1.5f, 0xFF000000, 0, 0.f, INTRAFONT_ALIGN_CENTER ); + intraFontSetStyle( ltn8, 1.5f, 0xFFFFFFFF, 0, 0.f, INTRAFONT_ALIGN_CENTER ); while( offset < sRomSize ) {