Fix SDL2 include directives

This commit is contained in:
Francesco Abbate 2020-06-29 15:24:08 +02:00
parent 3224622a40
commit 77a9819f4e
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#include <SDL2/SDL.h>
#include <SDL.h>
#include <stdbool.h>
#include <ctype.h>
#include <dirent.h>

View File

@ -1,5 +1,5 @@
#include <stdio.h>
#include <SDL2/SDL.h>
#include <SDL.h>
#include "api/api.h"
#include "renderer.h"

View File

@ -1,7 +1,7 @@
#ifndef RENDERER_H
#define RENDERER_H
#include <SDL2/SDL.h>
#include <SDL.h>
#include <stdint.h>
typedef struct RenImage RenImage;