Merge branch 'master' of github.com:Lauchmelder23/NESemu

This commit is contained in:
Lauchmelder 2022-03-01 03:34:44 +01:00
commit a93d653a93
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ cmake_minimum_required (VERSION 3.8)
project ("NES Emulator")
find_package(glfw3)
if(NOT GLFW3_FOUND)
if(NOT glfw3_FOUND)
add_subdirectory("vendor/glfw")
endif()
add_subdirectory("vendor/glad")

View file

@ -2,7 +2,7 @@
#include <stdexcept>
#include <glad/glad.h>
#include <glfw/glfw3.h>
#include <GLFW/glfw3.h>
#include <imgui/backends/imgui_impl_glfw.h>
#include <imgui/backends/imgui_impl_opengl3.h>