1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-18 10:38:31 +02:00

Clean up tsx/tsy initialization

Again, it used this severely overcomplicated expression for god knows
what reason. I've replaced it with a simpler one. Also it's const just
to indicate intent.
This commit is contained in:
Misa 2020-07-09 02:32:00 -07:00 committed by Ethan Lee
parent d591c77088
commit fd2ee96c49

View File

@ -1680,8 +1680,8 @@ void mapclass::loadlevel(int rx, int ry)
int tempscriptbox=0;
for(size_t edi=0; edi<edentity.size(); edi++){
//If entity is in this room, create it
int tsx=(edentity[edi].x-(edentity[edi].x%40))/40;
int tsy=(edentity[edi].y-(edentity[edi].y%30))/30;
const int tsx = edentity[edi].x / 40;
const int tsy = edentity[edi].y / 30;
if (tsx != rx-100 || tsy != ry-100)
{
continue;