mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- fixed coordinate typo.
This commit is contained in:
parent
b9687b4a57
commit
8309d8f634
1 changed files with 1 additions and 1 deletions
|
@ -6446,7 +6446,7 @@ void AActor::UpdateRenderSectorList()
|
||||||
if (PortalBlockmap.containsLines && Pos().XY() != OldRenderPos.XY())
|
if (PortalBlockmap.containsLines && Pos().XY() != OldRenderPos.XY())
|
||||||
{
|
{
|
||||||
int bx = GetBlockX(X());
|
int bx = GetBlockX(X());
|
||||||
int by = GetBlockX(Y());
|
int by = GetBlockY(Y());
|
||||||
FBoundingBox bb(X(), Y(), MIN(radius*1.5, 128.)); // Don't go further than 128 map units, even for large actors
|
FBoundingBox bb(X(), Y(), MIN(radius*1.5, 128.)); // Don't go further than 128 map units, even for large actors
|
||||||
// Are there any portals near the actor's position?
|
// Are there any portals near the actor's position?
|
||||||
if (bx >= 0 && by >= 0 && bx < bmapwidth && by < bmapheight && PortalBlockmap(bx, by).neighborContainsLines)
|
if (bx >= 0 && by >= 0 && bx < bmapwidth && by < bmapheight && PortalBlockmap(bx, by).neighborContainsLines)
|
||||||
|
|
Loading…
Reference in a new issue