1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-22 09:39:43 +01:00

Fix copy-paste error in customposition

This would otherwise result in text boxes for custom crewmates being
improperly positioned.
This commit is contained in:
Misa 2024-03-29 19:55:41 -07:00
parent a9d438968d
commit 8640ead937

View file

@ -681,7 +681,7 @@ void scriptclass::run(void)
texty = 0;
textcrewmateposition.x = obj.entities[i].xp;
textcrewmateposition.override_x = true;
textcrewmateposition.y = obj.entities[i].xp;
textcrewmateposition.y = obj.entities[i].yp;
textcrewmateposition.override_y = true;
textcrewmateposition.dir = j;