mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 18:04:09 +03:00
Add language-specific font configuration
meta.xml can now have a <font> tag, which gives the name of the font that the language needs. This will directly control the interface font when the language is active, and will soon also control the font used for each option on the language screen.
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
dadb7f2623
commit
5dad6b38be
@@ -105,7 +105,7 @@ void textboxclass::resize(void)
|
||||
for (size_t iter = 0; iter < lines.size(); iter++)
|
||||
{
|
||||
int len = font::len(print_flags, lines[iter]);
|
||||
if (len > (unsigned int)max) max = len;
|
||||
if (len > max) max = len;
|
||||
}
|
||||
|
||||
// 16 for the borders
|
||||
|
||||
Reference in New Issue
Block a user