Commit db6011aa authored by hybrid's avatar hybrid

Removed development replacement code. Sorry, this was not meant to be in SVN...

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@683 dfc29bdd-3216-0410-991c-e03cc46cb475
parent f960e510
...@@ -279,7 +279,6 @@ namespace core ...@@ -279,7 +279,6 @@ namespace core
template <class T> template <class T>
inline CMatrix4<T>::CMatrix4( eConstructor constructor ) : definitelyIdentityMatrix(false) inline CMatrix4<T>::CMatrix4( eConstructor constructor ) : definitelyIdentityMatrix(false)
{ {
#if 0
switch ( constructor ) switch ( constructor )
{ {
case EM4CONST_NOTHING: case EM4CONST_NOTHING:
...@@ -291,14 +290,11 @@ namespace core ...@@ -291,14 +290,11 @@ namespace core
makeIdentity(); makeIdentity();
break; break;
} }
#endif
makeIdentity();
} }
template <class T> template <class T>
inline CMatrix4<T>::CMatrix4( const CMatrix4<T>& other, eConstructor constructor) : definitelyIdentityMatrix(false) inline CMatrix4<T>::CMatrix4( const CMatrix4<T>& other, eConstructor constructor) : definitelyIdentityMatrix(false)
{ {
#if 0
switch ( constructor ) switch ( constructor )
{ {
case EM4CONST_IDENTITY: case EM4CONST_IDENTITY:
...@@ -323,8 +319,6 @@ namespace core ...@@ -323,8 +319,6 @@ namespace core
*this=getTransposed(); *this=getTransposed();
break; break;
} }
#endif
*this = other;
} }
//! Add another matrix. //! Add another matrix.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment