mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Allow a maximum of 26 lines, with L suffix
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
299ed90493
commit
1183083355
@@ -1347,6 +1347,17 @@ void Graphics::addline( const std::string& t )
|
||||
textboxes[m].addline(t);
|
||||
}
|
||||
|
||||
void Graphics::setlarge(bool large)
|
||||
{
|
||||
if (!INBOUNDS_VEC(m, textboxes))
|
||||
{
|
||||
vlog_error("setlarge() out-of-bounds!");
|
||||
return;
|
||||
}
|
||||
|
||||
textboxes[m].large = large;
|
||||
}
|
||||
|
||||
void Graphics::textboxadjust(void)
|
||||
{
|
||||
if (!INBOUNDS_VEC(m, textboxes))
|
||||
|
||||
Reference in New Issue
Block a user