mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 09:54:10 +03:00
Complete font::print_wrap flag handling
Also added some borders to more of the text in room name translator mode, fixed a positioning issue if the interface font is not 8x8, and migrated the trophy texts to font::print_wrap (including PR_COLORGLYPH_BRI that still needed to be done)
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
689d6e3e97
commit
dadb7f2623
@@ -75,7 +75,7 @@ namespace roomname_translator
|
||||
|
||||
const char* first_part = "Unexplained room names are ";
|
||||
font::print(PR_BOR | PR_FONT_8X8, 0, 60, first_part, 255,255,255);
|
||||
font::print(PR_BOR | PR_FONT_8X8, graphics.len(first_part), 60, "cyan.", 64, 255, 255-help.glow);
|
||||
font::print(PR_BOR | PR_FONT_8X8, font::len(PR_FONT_8X8, first_part), 60, "cyan.", 64, 255, 255-help.glow);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -90,7 +90,7 @@ namespace roomname_translator
|
||||
|
||||
const char* first_part = "English room names are ";
|
||||
font::print(PR_BOR | PR_FONT_8X8, 0, 60, first_part, 255,255,255);
|
||||
font::print(PR_BOR | PR_FONT_8X8, graphics.len(first_part), 60, "cyan.", 0, 192, 255-help.glow);
|
||||
font::print(PR_BOR | PR_FONT_8X8, font::len(PR_FONT_8X8, first_part), 60, "cyan.", 0, 192, 255-help.glow);
|
||||
}
|
||||
font::print(PR_BOR | PR_FONT_8X8, 0, 80, "KEYS:", 255,255,255);
|
||||
if (expl_mode)
|
||||
|
||||
Reference in New Issue
Block a user