Fix from patch tracker by saphires: [#23339] Remove const members in AUD_3Dmath.h

This commit is contained in:
Joerg Mueller
2010-08-16 14:31:39 +00:00
parent b2cb83598c
commit 75bb393ecc

View File

@@ -34,10 +34,10 @@ private:
float m_v[4];
struct
{
const float m_w;
const float m_x;
const float m_y;
const float m_z;
float m_w;
float m_x;
float m_y;
float m_z;
};
};
@@ -120,9 +120,9 @@ private:
float m_v[3];
struct
{
const float m_x;
const float m_y;
const float m_z;
float m_x;
float m_y;
float m_z;
};
};