Skip to content
Snippets Groups Projects
Commit 2157755e authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

More MSVC fixes (blatently unnecessary ones?)

parent 37168493
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4371 passed
...@@ -61,11 +61,15 @@ static const KNOWNFOLDERID FOLDERID_ProgramData = { ...@@ -61,11 +61,15 @@ static const KNOWNFOLDERID FOLDERID_ProgramData = {
#if !(defined __BORLANDC__ || defined _MSC_VER) #if !(defined __BORLANDC__ || defined _MSC_VER)
#include <stdbool.h> #include <stdbool.h>
#else #else
#ifndef bool
#define bool int #define bool int
#endif
#if !(defined false && defined true)
enum { enum {
false, false,
true true
}; };
#endif
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment