Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions FitdLib/config.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#if __cplusplus
#include <vector>
#include <vector>
#include <string>
#endif

Expand Down Expand Up @@ -37,10 +37,10 @@
#define USE_IMGUI
#define USE_OPENGL_3_2
#endif

#ifdef AITD_UE4
#undef USE_IMGUI
#endif
#ifdef AITD_UE4
#undef USE_IMGUI
#endif

#ifdef MACOSX
#define UNIX
Expand All @@ -59,11 +59,11 @@ typedef int32_t s32;
#else
typedef unsigned char u8;
typedef unsigned short int u16;
typedef unsigned long int u32;
typedef unsigned int u32;

typedef signed char s8;
typedef signed short int s16;
typedef signed long int s32;
typedef signed int s32;
#endif

#include <stdlib.h>
Expand Down