We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2dc02e commit 75f8a47Copy full SHA for 75f8a47
source/cpp/native-lib.cpp
@@ -8,7 +8,7 @@
8
9
void mainfunc(){
10
// Only start when roblox is loaded
11
- while (!isLibraryLoaded("libroblox.so")) sleep(1);
+ while (!isLibraryLoaded("RobloxLib.framework")) sleep(1);
12
13
// Init our function pointers
14
initfuncs();
@@ -22,4 +22,4 @@ void mainfunc(){
22
}
23
24
[[maybe_unused]] __attribute__((constructor))
25
-void EntryPoint(){ std::thread{mainfunc}.detach(); }
+void EntryPoint(){ std::thread{mainfunc}.detach(); }
0 commit comments