Modified comments

Former-commit-id: d66e58a05e212983a6522989ece76a7bdf0292c6
This commit is contained in:
Lynix 2014-01-05 15:28:57 +01:00
parent a332579c80
commit f3f16144ab
3 changed files with 4 additions and 2 deletions

View File

@ -68,6 +68,8 @@
#define NAZARA_COMPILER_UNKNOWN
#define NAZARA_DEPRECATED(txt)
#define NAZARA_FUNCTION __func__ // __func__ est standard depuis le C++11
/// Cette ligne n'est là que pour prévenir, n'hésitez pas à la commenter si elle vous empêche de compiler
#error This compiler is not fully supported
#endif

View File

@ -723,7 +723,7 @@ bool NzOpenGL::Initialize()
s_openglVersion = major*100 + minor*10;
NazaraDebug("OpenGL " + NzString::Number(major) + '.' + NzString::Number(minor) + " detected");
NazaraDebug("OpenGL version: " + NzString::Number(major) + '.' + NzString::Number(minor));
if (s_openglVersion < 200)
{

View File

@ -646,7 +646,7 @@ bool NzRenderer::Initialize()
return false;
}
// Initialisation du module
// Initialisation d'OpenGL
if (!NzOpenGL::Initialize())
{
NazaraError("Failed to initialize OpenGL");