Commit 65f5034a authored by hybrid's avatar hybrid

Syntax problem fixed, found by Dorth.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2103 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 8ca89ee6
......@@ -55,8 +55,8 @@ bool COpenGLDriver::initDriver(irr::SIrrlichtCreationParameters params)
1, // Version Number
PFD_DRAW_TO_WINDOW | // Format Must Support Window
PFD_SUPPORT_OPENGL | // Format Must Support OpenGL
params.Doublebuffer?PFD_DOUBLEBUFFER:0 | // Must Support Double Buffering
params.Stereobuffer?PFD_STEREO:0 | // Must Support Stereo Buffer
(params.Doublebuffer?PFD_DOUBLEBUFFER:0) | // Must Support Double Buffering
(params.Stereobuffer?PFD_STEREO:0) | // Must Support Stereo Buffer
PFD_TYPE_RGBA, // Request An RGBA Format
params.Bits, // Select Our Color Depth
0, 0, 0, 0, 0, 0, // Color Bits Ignored
......
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