Repaired paths to SDL & SDL_mixer

This commit is contained in:
2021-05-08 18:38:37 +02:00
parent 54cccc4f1f
commit 826bdda3c6
5 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
#pragma once #pragma once
#include "SDL.h" #include <SDL2/SDL.h>
struct Color { struct Color {
Uint8 r; Uint8 r;

View File

@@ -1,5 +1,5 @@
#include "jfile.h" #include "jfile.h"
#include "SDL.h" #include <SDL2/SDL.h>
#include <fstream> #include <fstream>
#pragma pack(push,1) #pragma pack(push,1)

View File

@@ -1,5 +1,5 @@
#pragma once #pragma once
#include "SDL.h" #include <SDL2/SDL.h>
void JG_Init(); void JG_Init();

View File

@@ -1,5 +1,5 @@
#pragma once #pragma once
#include "SDL.h" #include <SDL2/SDL.h>
void JI_DisableKeyboard(Uint32 time); void JI_DisableKeyboard(Uint32 time);

View File

@@ -17,6 +17,6 @@ private:
void FadeIn(); void FadeIn();
void FadeOut(); 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); void Wait(int time);
}; };