shithub: cstory

Download patch

ref: 4f7bd116f60a40ebde7202e7fc8fdfe91ba41389
parent: 8dd1b05790c6e0979de56f4266df712d87e70771
author: Clownacy <Clownacy@users.noreply.github.com>
date: Sun Jan 26 18:57:09 EST 2020

Add missing SDL.h #includes

--- a/src/Profile.cpp
+++ b/src/Profile.cpp
@@ -4,6 +4,8 @@
 #include <stdio.h>
 #include <string.h>
 
+#include "SDL.h"
+
 #include "WindowsWrapper.h"
 
 #include "ArmsItem.h"
--- a/src/TextScr.cpp
+++ b/src/TextScr.cpp
@@ -4,6 +4,8 @@
 #include <stdlib.h>
 #include <string.h>
 
+#include "SDL.h"
+
 #include "WindowsWrapper.h"
 
 #include "ArmsItem.h"
--