1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

No privilege elevation is possible on emscripten.

This commit is contained in:
Bartosz Taudul
2023-02-20 21:36:18 +01:00
parent fad09a452a
commit b0174f2f3a
+7
View File
@@ -22,6 +22,13 @@ bool IsElevated()
return ret;
}
#elif defined __EMSCRIPTEN__
bool IsElevated()
{
return false;
}
#else
#include <unistd.h>