We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c4a66f commit f615e24Copy full SHA for f615e24
include/module.h
@@ -32,7 +32,7 @@ int sblib_init(const char *sourceFile);
32
*
33
* @return non-zero on success
34
*/
35
-int sblib_is_ide_compatible(void);
+int sblib_has_window_ui(void);
36
37
/**
38
* @ingroup modstd
raylib/main.cpp
@@ -2097,7 +2097,7 @@ SBLIB_API void sblib_close(void) {
2097
}
2098
2099
2100
-SBLIB_API int sblib_is_ide_compatible(void) {
2101
- // when using the SQL build, programs must be run via a separate thread
2102
- return 0;
+SBLIB_API int sblib_has_window_ui(void) {
+ // raylib module creates a UI in a new window
+ return 1;
2103
0 commit comments