From a6be15ef138baa4d9d0446acf33fa220edf6d4b7 Mon Sep 17 00:00:00 2001 From: piwalker Date: Fri, 3 Jan 2025 08:16:30 -0700 Subject: [PATCH] Made include path relative --- 2dGameProject/2dGameProject.vcxproj | 2 +- 2dGameProject/main.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/2dGameProject/2dGameProject.vcxproj b/2dGameProject/2dGameProject.vcxproj index 6baa132..ca62f2f 100644 --- a/2dGameProject/2dGameProject.vcxproj +++ b/2dGameProject/2dGameProject.vcxproj @@ -104,7 +104,7 @@ true _DEBUG;_CONSOLE;%(PreprocessorDefinitions) true - C:\Users\piwalker\source\repos\2dGameProject\deps\glfw\include;%(AdditionalIncludeDirectories) + $(SolutionDir)\deps\glfw\include;%(AdditionalIncludeDirectories) Console diff --git a/2dGameProject/main.cpp b/2dGameProject/main.cpp index f62e527..14aa1c3 100644 --- a/2dGameProject/main.cpp +++ b/2dGameProject/main.cpp @@ -16,7 +16,6 @@ int main() { init(); Window* window = new Window(640, 480, "Test Window"); - window->setWindowedFullscreen(window->getMonitors()[1]); window->beginRender();