Commit e0ef6c74 authored by bitplane's avatar bitplane

Fixed a typo in Windows OpenGL driver init method

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