Modified comments
Former-commit-id: d66e58a05e212983a6522989ece76a7bdf0292c6
This commit is contained in:
parent
a332579c80
commit
f3f16144ab
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -646,7 +646,7 @@ bool NzRenderer::Initialize()
|
|||
return false;
|
||||
}
|
||||
|
||||
// Initialisation du module
|
||||
// Initialisation d'OpenGL
|
||||
if (!NzOpenGL::Initialize())
|
||||
{
|
||||
NazaraError("Failed to initialize OpenGL");
|
||||
|
|
|
|||
Loading…
Reference in New Issue