mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-05 02:39:41 +01: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:
parent
1bc1149ab5
commit
d0992e18a4
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue