From 826bdda3c6c31f1d783f881610bcfded4dff0897 Mon Sep 17 00:00:00 2001 From: JailDoctor Date: Sat, 8 May 2021 18:38:37 +0200 Subject: [PATCH] Repaired paths to SDL & SDL_mixer --- jdraw8.h | 2 +- jfile.cpp | 2 +- jgame.h | 2 +- jinput.h | 2 +- modulesequence.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/jdraw8.h b/jdraw8.h index fce4db1..d76e4a0 100644 --- a/jdraw8.h +++ b/jdraw8.h @@ -1,5 +1,5 @@ #pragma once -#include "SDL.h" +#include struct Color { Uint8 r; diff --git a/jfile.cpp b/jfile.cpp index 6ad9aa8..e55f5e9 100644 --- a/jfile.cpp +++ b/jfile.cpp @@ -1,5 +1,5 @@ #include "jfile.h" -#include "SDL.h" +#include #include #pragma pack(push,1) diff --git a/jgame.h b/jgame.h index f734aec..cbc6bc2 100644 --- a/jgame.h +++ b/jgame.h @@ -1,5 +1,5 @@ #pragma once -#include "SDL.h" +#include void JG_Init(); diff --git a/jinput.h b/jinput.h index b3f6009..a90b176 100644 --- a/jinput.h +++ b/jinput.h @@ -1,5 +1,5 @@ #pragma once -#include "SDL.h" +#include void JI_DisableKeyboard(Uint32 time); diff --git a/modulesequence.h b/modulesequence.h index 25635ef..cf0e87c 100644 --- a/modulesequence.h +++ b/modulesequence.h @@ -17,6 +17,6 @@ private: void FadeIn(); void FadeOut(); - void ShowText(int x, int y, int color, int speed, char* text1, char* text2 = nullptr, char* text3 = nullptr); + void ShowText(int x, int y, int color, int speed, const char* text1, const char* text2 = nullptr, const char* text3 = nullptr); void Wait(int time); };