Commit 94ecc763 authored by hybrid's avatar hybrid

Fixed typo in variable name.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2035 dfc29bdd-3216-0410-991c-e03cc46cb475
parent e7ced16d
......@@ -313,7 +313,7 @@ bool CIrrDeviceLinux::createWindow()
GLX_DOUBLEBUFFER, GL_TRUE,
GLX_STENCIL_SIZE, 1,
GLX_SAMPLE_BUFFERS_ARB, 1,
GLX_SAMPLES_ARB, AntiAlias,
GLX_SAMPLES_ARB, CreationParams.AntiAlias,
None
};
......@@ -348,7 +348,7 @@ bool CIrrDeviceLinux::createWindow()
{
//reenable multisampling
visualAttrBuffer[17] = 1;
visualAttrBuffer[19] = AntiAlias;
visualAttrBuffer[19] = CreationParams.AntiAlias;
}
}
}
......@@ -383,7 +383,7 @@ bool CIrrDeviceLinux::createWindow()
{
//reenable multisampling
visualAttrBuffer[17] = 1;
visualAttrBuffer[19] = AntiAlias;
visualAttrBuffer[19] = CreationParams.AntiAlias;
}
}
}
......@@ -415,7 +415,7 @@ bool CIrrDeviceLinux::createWindow()
{
//reenable multisampling
visualAttrBuffer[17] = 1;
visualAttrBuffer[19] = AntiAlias;
visualAttrBuffer[19] = CreationParams.AntiAlias;
}
}
}
......
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