- fixed compilation.
Forgot to save these before the last commit. :(
This commit is contained in:
parent
c1e04b29d1
commit
91406aa48b
2 changed files with 8 additions and 8 deletions
|
|
@ -1000,10 +1000,10 @@ bool AActor::IsInsideVisibleAngles() const
|
|||
if (p == nullptr || p->camera == nullptr)
|
||||
return true;
|
||||
|
||||
DAngle anglestart = VisibleStartAngle;
|
||||
DAngle angleend = VisibleEndAngle;
|
||||
DAngle pitchstart = VisibleStartPitch;
|
||||
DAngle pitchend = VisibleEndPitch;
|
||||
DAngle anglestart = VisibleStartAngle.Degrees;
|
||||
DAngle angleend = VisibleEndAngle.Degrees;
|
||||
DAngle pitchstart = VisibleStartPitch.Degrees;
|
||||
DAngle pitchend = VisibleEndPitch.Degrees;
|
||||
|
||||
if (anglestart > angleend)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue