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:
parent
a9d438968d
commit
8640ead937
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue