1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-01 18:43:33 +02:00

Fix copy-paste error

This commit is contained in:
AllyTally 2022-11-25 20:32:37 -04:00 committed by Misa Elizabeth Kai
parent 1837fe8abf
commit f7bbf4670c

View File

@ -2059,7 +2059,7 @@ void rendermap(void)
void rendermapfog(void)
{
int mapwidth = map.custommode ? map.customheight : 20;
int mapwidth = map.custommode ? map.customwidth : 20;
int mapheight = map.custommode ? map.customheight : 20;
int mapzoom = map.custommode ? map.customzoom : 1;
int mapxoff = map.custommode ? map.custommmxoff : 0;
@ -2137,7 +2137,7 @@ void rendermaplegend(void)
void rendermapcursor(bool flashing)
{
int mapwidth = map.custommode ? map.customheight : 20;
int mapwidth = map.custommode ? map.customwidth : 20;
int mapheight = map.custommode ? map.customheight : 20;
int mapzoom = map.custommode ? map.customzoom : 1;
int mapxoff = map.custommode ? map.custommmxoff : 0;
@ -2675,7 +2675,7 @@ void teleporterrender(void)
// Draw a box around the currently selected teleporter
int mapwidth = map.custommode ? map.customheight : 20;
int mapwidth = map.custommode ? map.customwidth : 20;
int mapheight = map.custommode ? map.customheight : 20;
int mapzoom = map.custommode ? map.customzoom : 1;
int mapxoff = map.custommode ? map.custommmxoff : 0;