1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-29 04:33:04 +00:00

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.
This commit is contained in:
Ryan Carsten Schmidt 2023-12-14 18:28:43 -06:00
parent 2352b4e6d8
commit dc657bdd51

View File

@ -19,7 +19,7 @@
#include <memory>
#include <sys/stat.h>
#include <SDL2/SDL.h>
#include <SDL.h>
#include "../../Analyser/Static/StaticAnalyser.hpp"
#include "../../Machines/Utility/MachineForTarget.hpp"