Fix compilation

This commit is contained in:
Lynix 2018-03-20 21:59:27 +01:00
parent 665512402c
commit bca94e0955
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ namespace Nz
template<typename T>
bool Serialize(SerializationContext& context, const BoundingVolume<T>& boundingVolume, TypeTag<BoundingVolume<T>>)
{
if (!Serialize(context, static_cast<UInt8>(boundingVolume.extend)>))
if (!Serialize(context, static_cast<UInt8>(boundingVolume.extend)))
return false;
if (!Serialize(context, boundingVolume.aabb))