Kaydet (Commit) 69cae240 authored tarafından Markus Mohrhard's avatar Markus Mohrhard Kaydeden (comit) Markus Mohrhard

use false instead of 0

Change-Id: I7210493b98e8ed778eeba6518dc131e63863ff67
üst e62559bb
...@@ -160,7 +160,7 @@ bool WGLisExtensionSupported(const char *extension) ...@@ -160,7 +160,7 @@ bool WGLisExtensionSupported(const char *extension)
supported = (char*)glGetString(GL_EXTENSIONS); supported = (char*)glGetString(GL_EXTENSIONS);
// If That Failed Too, Must Be No Extensions Supported // If That Failed Too, Must Be No Extensions Supported
if (supported == NULL) if (supported == NULL)
return 0; return false;
// Begin Examination At Start Of String, Increment By 1 On False Match // Begin Examination At Start Of String, Increment By 1 On False Match
for (const char* p = supported; ; p++) for (const char* p = supported; ; p++)
......
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