Fixed Frustum::GetPlane not compiling in debug

Former-commit-id: efe801b21f50803368aea4c5442a43c1621545f6
This commit is contained in:
Lynix
2013-05-16 22:21:33 +02:00
parent 6d2a1118bc
commit c05c22c97a

View File

@@ -358,7 +358,7 @@ const NzPlane<T>& NzFrustum<T>::GetPlane(nzFrustumPlane plane) const
{ {
NazaraError("Frustum plane not handled (0x" + NzString::Number(plane, 16) + ')'); NazaraError("Frustum plane not handled (0x" + NzString::Number(plane, 16) + ')');
static NzVector3<T> dummy; static NzPlane<T> dummy;
return dummy; return dummy;
} }
#endif #endif