Skip to content

Commit

Permalink
Fix loading text for large rom buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
z2442 committed Oct 19, 2019
1 parent 0de2715 commit e3e8e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/ROMBuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
{
Expand Down

0 comments on commit e3e8e2f

Please sign in to comment.