mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Make wordwrapping functions take font arguments
They need to know how wide the text is going to be in a particular font, so font::string_wordwrap and font::string_wordwrap_balanced now take a flags argument like all the printing and dimensions-getting functions. next_wrap and next_wrap_s take a Font* now, they're internal to Font.cpp so they can take a Font and avoid double flag-parsing. But if any non-Font.cpp code needs next_wrap/next_wrap_s in the future, I'd just make a public wrapper that takes a uint32_t flags and passes the Font* to the internal functions.
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
0eaceed0a2
commit
25feb9dbb5
@@ -2507,7 +2507,7 @@ void scriptclass::translate_dialogue(void)
|
||||
}
|
||||
else
|
||||
{
|
||||
tra = font::string_wordwrap_balanced(format->text, format->wraplimit);
|
||||
tra = font::string_wordwrap_balanced(PR_FONT_LEVEL, format->text, format->wraplimit);
|
||||
}
|
||||
|
||||
textcentertext = format->centertext;
|
||||
|
||||
Reference in New Issue
Block a user