mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
Fix minor typo in comments
This commit is contained in:
parent
c08d865b1b
commit
85a82bc6e8
1 changed files with 2 additions and 2 deletions
|
@ -4158,7 +4158,7 @@ bool DLevelScript::DoCheckActorTexture(int tid, AActor *activator, int string, b
|
||||||
tex == TexMan[*ff->top.texture] &&
|
tex == TexMan[*ff->top.texture] &&
|
||||||
z <= ff->top.plane->ZatPoint(actor->x, actor->y) &&
|
z <= ff->top.plane->ZatPoint(actor->x, actor->y) &&
|
||||||
z >= ff->bottom.plane->ZatPoint(actor->x, actor->y))
|
z >= ff->bottom.plane->ZatPoint(actor->x, actor->y))
|
||||||
{ // Having your feet within a liquid count as being "on" it
|
{ // Having your feet within a liquid counts as being "on" it
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4188,7 +4188,7 @@ bool DLevelScript::DoCheckActorTexture(int tid, AActor *activator, int string, b
|
||||||
tex == TexMan[*ff->bottom.texture] &&
|
tex == TexMan[*ff->bottom.texture] &&
|
||||||
z <= ff->top.plane->ZatPoint(actor->X(), actor->Y()) &&
|
z <= ff->top.plane->ZatPoint(actor->X(), actor->Y()) &&
|
||||||
z >= ff->bottom.plane->ZatPoint(actor->X(), actor->Y()))
|
z >= ff->bottom.plane->ZatPoint(actor->X(), actor->Y()))
|
||||||
{ // Having your eyes within a liquid count as being "under" it
|
{ // Having your eyes within a liquid counts as being "under" it
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue