Add missing initialization value for pitch

which causes a really nasty bug
This commit is contained in:
4VRDriver
2020-09-04 18:37:52 +02:00
parent 473ba514ed
commit 0f786f0216
3 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ Window::Window() {
glEnable(GL_DEPTH_TEST);
// Disable mouse cursor
setGrabbedCursor(0);
setGrabbedCursor(1);
#ifdef _DEBUG
std::cout << "OpenGL version: " << glGetString(GL_VERSION) << std::endl;