REDRIVER2/src_rebuild/Game/platform.h

19 lines
299 B
C
Raw Normal View History

#ifndef PLATFORM_H
#define PLATFORM_H
2021-04-10 15:57:16 +02:00
#if defined(__EMSCRIPTEN__)
#include <emscripten/emscripten.h>
#include <emscripten/html5.h>
#endif
#include "psyx_compat.h"
2020-11-24 11:14:47 +01:00
2021-02-26 18:37:08 +01:00
#ifndef PSX
#include "../utils/fs.h"
#endif
#ifdef __GNUC__
#define _stricmp(s1, s2) strcasecmp(s1, s2)
#endif
#endif // PLATFORM_H