Skip to content

Commit 8c4a66f

Browse files
author
Chris Warren-Smith
committed
RAYLIB: programs must run in a separate thread or via the command line
1 parent d9f64b1 commit 8c4a66f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

raylib/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2097,7 +2097,7 @@ SBLIB_API void sblib_close(void) {
20972097
}
20982098
}
20992099

2100-
SBLIB_API void sblib_is_ide_compatible(void) {
2100+
SBLIB_API int sblib_is_ide_compatible(void) {
21012101
// when using the SQL build, programs must be run via a separate thread
2102-
return false;
2102+
return 0;
21032103
}

0 commit comments

Comments
 (0)