Merge pull request #4962 from W-MS/master

fix the typo, maybe
This commit is contained in:
Unknown W. Brackets 2014-01-01 13:25:52 -08:00
commit f4df446805

View File

@ -157,7 +157,7 @@ static void ClearBuffer() {
glstate.stencilFunc.set(GL_ALWAYS, 0xFF, 0xFF);
glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
glClearStencil(0xFF);
glClearDepth(1.0);
glClearDepthf(1.0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
}