REDRIVER2/src_rebuild/Game/platform.h
Ilya Shurumov 97e738ba36 - [Psy-X] include files renames
- re-arrange includes
2021-05-07 23:00:28 +06:00

19 lines
299 B
C

#ifndef PLATFORM_H
#define PLATFORM_H
#if defined(__EMSCRIPTEN__)
#include <emscripten/emscripten.h>
#include <emscripten/html5.h>
#endif
#include "psyx_compat.h"
#ifndef PSX
#include "../utils/fs.h"
#endif
#ifdef __GNUC__
#define _stricmp(s1, s2) strcasecmp(s1, s2)
#endif
#endif // PLATFORM_H