shithub: cstory

Download patch

ref: 44094b103e5df0857ef0267c388b972705b60050
parent: c80b593a3f32b5fcb81b227cfe9f46de7a80a4f6
author: Clownacy <[email protected]>
date: Thu Jun 6 14:51:44 EDT 2019

<SDL.h> -> "SDL.h"

The SDL devs recommend this:
https://wiki.libsdl.org/FAQDevelopment#Do_I_.23include_.3CSDL.h.3E_or_.3CSDL.2FSDL.h.3E.3F

--- a/src/Input.cpp
+++ b/src/Input.cpp
@@ -3,7 +3,7 @@
 #include <stddef.h>
 #include <string.h>
 
-#include <SDL.h>
+#include "SDL.h"
 
 #include "WindowsWrapper.h"
 
--- a/src/Main.cpp
+++ b/src/Main.cpp
@@ -4,7 +4,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <SDL.h>
+#include "SDL.h"
 
 #include "WindowsWrapper.h"