From dc657bdd5129d52dcbaeb45d2dce86156af93a2f Mon Sep 17 00:00:00 2001 From: Ryan Carsten Schmidt Date: Thu, 14 Dec 2023 18:28:43 -0600 Subject: [PATCH] Use the right include path for SDL.h Fixes "main.cpp:22:10: fatal error: 'SDL2/SDL.h' file not found" when SDL2 is not in a standard system include directory. --- OSBindings/SDL/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OSBindings/SDL/main.cpp b/OSBindings/SDL/main.cpp index 226cb7c41..d0c253d30 100644 --- a/OSBindings/SDL/main.cpp +++ b/OSBindings/SDL/main.cpp @@ -19,7 +19,7 @@ #include #include -#include +#include #include "../../Analyser/Static/StaticAnalyser.hpp" #include "../../Machines/Utility/MachineForTarget.hpp"