mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- fixed minor issues with new line specials
This commit is contained in:
parent
b02736c705
commit
91f440378e
1 changed files with 4 additions and 3 deletions
|
@ -2782,7 +2782,7 @@ FUNC(LS_Line_SetAutomapFlags)
|
||||||
int setflags = 0;
|
int setflags = 0;
|
||||||
int clearflags = 0;
|
int clearflags = 0;
|
||||||
|
|
||||||
for (int i = 0; flagtrans[i] != ML_PORTALCONNECT; i++, arg1 >>= 1, arg2 >>= 1)
|
for (int i = 0; flagtrans[i] != -1; i++, arg1 >>= 1, arg2 >>= 1)
|
||||||
{
|
{
|
||||||
if (arg1 & 1) setflags |= flagtrans[i];
|
if (arg1 & 1) setflags |= flagtrans[i];
|
||||||
if (arg2 & 1) clearflags |= flagtrans[i];
|
if (arg2 & 1) clearflags |= flagtrans[i];
|
||||||
|
@ -2799,9 +2799,10 @@ FUNC(LS_Line_SetAutomapFlags)
|
||||||
}
|
}
|
||||||
|
|
||||||
FUNC(LS_Line_SetAutomapStyle)
|
FUNC(LS_Line_SetAutomapStyle)
|
||||||
// Line_SetAutomapStyle (id, setflags, clearflags)
|
// Line_SetAutomapStyle (id, style)
|
||||||
{
|
{
|
||||||
if (arg1 < AMLS_COUNT && arg1 >= 0) {
|
if (arg1 < AMLS_COUNT && arg1 >= 0)
|
||||||
|
{
|
||||||
FLineIdIterator itr(arg0);
|
FLineIdIterator itr(arg0);
|
||||||
int line;
|
int line;
|
||||||
while ((line = itr.Next()) >= 0)
|
while ((line = itr.Next()) >= 0)
|
||||||
|
|
Loading…
Reference in a new issue