1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-28 15:38:30 +02:00

Fix regression with rainbow lab BG in editor

731fb89c90 was partially reverted by #624
because of my bad rebase.
This commit is contained in:
Misa 2021-10-28 17:27:13 -07:00
parent 1bc1149ab5
commit d0992e18a4

View File

@ -4233,6 +4233,12 @@ void editorclass::clamp_tilecol(const int rx, const int ry, const bool wrap)
case 1:
maxcol = 7;
break;
case 2:
if (room->directmode)
{
maxcol = 6;
}
break;
case 3:
maxcol = 6;
break;