mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Fix crash in editor tile selector
git-svn-id: https://svn.eduke32.com/eduke32@7465 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
c2e0000b11
commit
8cbada19cf
1 changed files with 3 additions and 1 deletions
|
@ -658,7 +658,9 @@ void tileLoadData(int16_t tilenume, int32_t dasiz, char *buffer)
|
|||
if (!waloff[owner])
|
||||
tileLoad(owner);
|
||||
|
||||
tileMaybeRotate(tilenume);
|
||||
if (waloff[tilenume])
|
||||
tileMaybeRotate(tilenume);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue