Mapster32: in tile selector, make backspace set palette to 0

git-svn-id: https://svn.eduke32.com/eduke32@6862 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2018-04-23 10:51:12 +00:00
parent a075f8e22b
commit 2b80de8a8c

View file

@ -2898,6 +2898,9 @@ static int32_t m32gettile(int32_t idInitialTile)
else globalpal = 0;
}
if (PRESSED_KEYSC(BS))
globalpal = 0;
// 'V' KEYPRESS
if (PRESSED_KEYSC(V))
tileNum = SelectAllTiles(tileNum);