shithub: cstory

Download patch

ref: 1543521625747c42ea2aaa5e4d42c47f625c77b3
parent: cb869a4fd1152749fae38bc5307df00a561f56bf
author: Clownacy <[email protected]>
date: Fri Apr 3 14:36:48 EDT 2020

Fix more errors x_x

--- a/src/Backends/Rendering/SDLSurface.cpp
+++ b/src/Backends/Rendering/SDLSurface.cpp
@@ -9,7 +9,7 @@
 #include "../../WindowsWrapper.h"
 
 #include "../Platform.h"
-#include "SDL2.h"
+#include "../SDL2/SDL2.h"
 
 typedef struct Backend_Surface
 {
--- a/src/Backends/Rendering/SDLTexture.cpp
+++ b/src/Backends/Rendering/SDLTexture.cpp
@@ -13,7 +13,7 @@
 #include "../../WindowsWrapper.h"
 
 #include "../Platform.h"
-#include "SDL2.h"
+#include "SDL2/SDL2.h"
 #include "../../Draw.h"
 #include "../../Ending.h"
 #include "../../MapName.h"
--- a/src/Backends/Rendering/Software.cpp
+++ b/src/Backends/Rendering/Software.cpp
@@ -9,7 +9,7 @@
 #include "../../WindowsWrapper.h"
 
 #include "../Platform.h"
-#include "SDL2.h"
+#include "../SDL2/SDL2.h"
 
 #define MIN(a, b) ((a) < (b) ? (a) : (b))
 #define MAX(a, b) ((a) > (b) ? (a) : (b))