Skip to content

Commit

Permalink
attempt build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmorton06 committed May 20, 2024
1 parent 9cb835f commit 936a62a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Lumos/Source/Lumos/Platform/GLFW/GLFWWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@

#include "GLFWKeyCodes.h"

#if __has_include(<filesystem>)
#include <filesystem>
#elif __has_include(<experimental/filesystem>)
#include <experimental/filesystem>
#endif
#include "Core/OS/OS.h"
#include "Core/OS/Input.h"
#include "Core/Application.h"
Expand Down Expand Up @@ -220,7 +225,7 @@ namespace Lumos
data.Exit = true; });

glfwSetWindowFocusCallback(m_Handle, [](GLFWwindow* window, int focused)
{
{
Window* lmWindow = Application::Get().GetWindow();

if(lmWindow)
Expand Down
1 change: 1 addition & 0 deletions Lumos/Source/Lumos/Platform/iOS/iOSPower.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <string>
#include "Core/OS/OS.h"

namespace Lumos
Expand Down

0 comments on commit 936a62a

Please sign in to comment.