Minor modifications

This commit is contained in:
Laurent Gomila 2011-12-21 22:31:42 +01:00
parent 78910b555e
commit 5a4e8d58af
3 changed files with 3 additions and 3 deletions

View File

@ -358,7 +358,7 @@ private:
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
// Member data // Member data
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
float myMatrix[16]; /// 4x4 matrix defining the transformation float myMatrix[16]; ///< 4x4 matrix defining the transformation
}; };
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////

View File

@ -44,7 +44,7 @@ namespace priv
#ifdef SFML_DEBUG #ifdef SFML_DEBUG
// In debug mode, perform a test on every OpenGL call // In debug mode, perform a test on every OpenGL call
#define GLCheck(call) ((call), sf::priv::GLCheckError(__FILE__, __LINE__)) #define GLCheck(call) ((call), sf::priv::GLCheckError(__FILE__, __LINE__))
#else #else

View File

@ -89,7 +89,7 @@ Transform Transform::GetInverse() const
} }
else else
{ {
return Transform(); return Identity;
} }
} }