mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 09:28:15 +03: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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user