Skip to content

Commit 3b48370

Browse files
authored
Update LSL.cs
1 parent 8a93dcd commit 3b48370

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

LSL.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -882,12 +882,12 @@ class dll
882882
#elif UNITY_STANDALONE_OSX
883883
const string libname = "liblsl";
884884
#elif (UNITY_EDITOR_WIN && UNITY_EDITOR_64)
885-
libname = "liblsl64";
885+
const string libname = "liblsl64";
886886
#elif UNITY_EDITOR_WIN
887-
libname = "liblsl32";
887+
const string libname = "liblsl32";
888888
#elif UNITY_STANDALONE_WIN
889889
// a build hook will took care that the correct dll will be renamed after a successfull build
890-
libname = "liblsl";
890+
const string libname = "liblsl";
891891
#elif UNITY_ANDROID
892892
const string libname = "lslAndroid";
893893
#else

0 commit comments

Comments
 (0)