mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-11 03:19:46 +01:00
Allow using Warp Zone gray tileset in editor
Originally written by Info Teddy
This commit is contained in:
parent
fc265e3c75
commit
d7dac6b9be
1 changed files with 4 additions and 0 deletions
|
@ -4343,6 +4343,10 @@ void editorinput()
|
||||||
{
|
{
|
||||||
if(ed.level[ed.levx+(ed.levy*ed.maxwidth)].tilecol>=8) ed.level[ed.levx+(ed.levy*ed.maxwidth)].tilecol=0;
|
if(ed.level[ed.levx+(ed.levy*ed.maxwidth)].tilecol>=8) ed.level[ed.levx+(ed.levy*ed.maxwidth)].tilecol=0;
|
||||||
}
|
}
|
||||||
|
else if(ed.level[ed.levx+(ed.levy*ed.maxwidth)].tileset==3)
|
||||||
|
{
|
||||||
|
if(ed.level[ed.levx+(ed.levy*ed.maxwidth)].tilecol>=7) ed.level[ed.levx+(ed.levy*ed.maxwidth)].tilecol=0;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if(ed.level[ed.levx+(ed.levy*ed.maxwidth)].tilecol>=6) ed.level[ed.levx+(ed.levy*ed.maxwidth)].tilecol=0;
|
if(ed.level[ed.levx+(ed.levy*ed.maxwidth)].tilecol>=6) ed.level[ed.levx+(ed.levy*ed.maxwidth)].tilecol=0;
|
||||||
|
|
Loading…
Reference in a new issue