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

Fix checkpoint starts in editor

This commit is contained in:
tzann 2020-07-29 19:54:22 +02:00 committed by Ethan Lee
parent 8aac6a758d
commit a4c1ffee12

View file

@ -4711,19 +4711,12 @@ void editorinput()
//Checkpoint spawn
int tx=(edentity[testeditor].x-(edentity[testeditor].x%40))/40;
int ty=(edentity[testeditor].y-(edentity[testeditor].y%30))/30;
game.edsavex = (edentity[testeditor].x%40)*8;
game.edsavex = (edentity[testeditor].x%40)*8 - 4;
game.edsavey = (edentity[testeditor].y%30)*8;
game.edsaverx = 100+tx;
game.edsavery = 100+ty;
game.edsavegc = edentity[testeditor].p1;
if(game.edsavegc==0)
{
game.edsavey--;
}
else
{
game.edsavey-=8;
}
game.edsavegc = 1-edentity[testeditor].p1;
game.edsavey--;
game.edsavedir = 0;
}
else
@ -4731,7 +4724,7 @@ void editorinput()
//Start point spawn
int tx=(edentity[testeditor].x-(edentity[testeditor].x%40))/40;
int ty=(edentity[testeditor].y-(edentity[testeditor].y%30))/30;
game.edsavex = ((edentity[testeditor].x%40)*8)-4;
game.edsavex = (edentity[testeditor].x%40)*8 - 4;
game.edsavey = (edentity[testeditor].y%30)*8;
game.edsaverx = 100+tx;
game.edsavery = 100+ty;