mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 09:39:43 +01:00
Changed timing of textsprites in transparent textboxes
Textsprites and textimages no longer wait for the opacity value in order to display within transparent textboxes. Text sprites in normal opaque textboxes are not affected by this change.
This commit is contained in:
parent
2e950fc935
commit
44a889efeb
1 changed files with 1 additions and 1 deletions
|
@ -939,7 +939,7 @@ void Graphics::drawgui(void)
|
|||
|
||||
opaque = textboxes[i].tl >= 1.0;
|
||||
|
||||
if (!opaque)
|
||||
if (!opaque && textboxes[i].r != 0 && textboxes[i].g != 0 && textboxes[i].b != 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue