1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 14:38:30 +02:00

Merge pull request #134 from InfoTeddy/general-bug-fixes

Fix text() centering with x=-1
This commit is contained in:
Terry Cavanagh 2020-01-31 23:37:06 +01:00 committed by GitHub
commit ab68cd98c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -597,7 +597,7 @@ void scriptclass::run( KeyPoll& key, Graphics& dwgfx, Game& game, mapclass& map,
dwgfx.textboxmoveto(textx);
}
if (textx == -500)
if (textx == -500 || textx == -1)
{
dwgfx.textboxcenterx();
}
@ -642,7 +642,7 @@ void scriptclass::run( KeyPoll& key, Graphics& dwgfx, Game& game, mapclass& map,
dwgfx.textboxmoveto(textx);
}
if (textx == -500)
if (textx == -500 || textx == -1)
{
dwgfx.textboxcenterx();
}