Skip to content
Snippets Groups Projects
Commit dd2131e4 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix Win32 build - we don't #include stdbool.h in sbbs.h

parent 0ea73e3a
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #3144 passed
...@@ -1252,7 +1252,7 @@ extern "C" { ...@@ -1252,7 +1252,7 @@ extern "C" {
unsigned char cp437_to_petscii(unsigned char); unsigned char cp437_to_petscii(unsigned char);
/* xtrn.cpp */ /* xtrn.cpp */
bool native_executable(scfg_t*, const char* cmdline, long mode); BOOL native_executable(scfg_t*, const char* cmdline, long mode);
#ifdef JAVASCRIPT #ifdef JAVASCRIPT
......
...@@ -218,7 +218,7 @@ static void petscii_convert(BYTE* buf, ulong len) ...@@ -218,7 +218,7 @@ static void petscii_convert(BYTE* buf, ulong len)
} }
} }
bool native_executable(scfg_t* cfg, const char* cmdline, long mode) BOOL native_executable(scfg_t* cfg, const char* cmdline, long mode)
{ {
char* p; char* p;
char str[MAX_PATH+1]; char str[MAX_PATH+1];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment