From 71d6527ab80d42315ccc1bb99e0b701c02b61a95 Mon Sep 17 00:00:00 2001 From: elmarsan Date: Wed, 5 Jun 2024 18:44:40 +0200 Subject: [PATCH] Remove glad import --- includes/learnopengl/camera.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/includes/learnopengl/camera.h b/includes/learnopengl/camera.h index 6f9d0002c..d06b72890 100644 --- a/includes/learnopengl/camera.h +++ b/includes/learnopengl/camera.h @@ -1,7 +1,6 @@ #ifndef CAMERA_H #define CAMERA_H -#include #include #include @@ -79,7 +78,7 @@ class Camera } // processes input received from a mouse input system. Expects the offset value in both the x and y direction. - void ProcessMouseMovement(float xoffset, float yoffset, GLboolean constrainPitch = true) + void ProcessMouseMovement(float xoffset, float yoffset, bool constrainPitch = true) { xoffset *= MouseSensitivity; yoffset *= MouseSensitivity;