We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a93dcd commit 3b48370Copy full SHA for 3b48370
1 file changed
LSL.cs
@@ -882,12 +882,12 @@ class dll
882
#elif UNITY_STANDALONE_OSX
883
const string libname = "liblsl";
884
#elif (UNITY_EDITOR_WIN && UNITY_EDITOR_64)
885
- libname = "liblsl64";
+ const string libname = "liblsl64";
886
#elif UNITY_EDITOR_WIN
887
- libname = "liblsl32";
+ const string libname = "liblsl32";
888
#elif UNITY_STANDALONE_WIN
889
// a build hook will took care that the correct dll will be renamed after a successfull build
890
- libname = "liblsl";
+ const string libname = "liblsl";
891
#elif UNITY_ANDROID
892
const string libname = "lslAndroid";
893
#else
0 commit comments