Skip to content

Commit

Permalink
[fix] ambiguous type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
srcnalt committed Feb 3, 2025
1 parent 809dca2 commit 58b269e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/NeocortexMicrophone.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static string[] devices
return Microphone.devices;
#else
Debug.Log("Use browser settings for microphone access.");
return new { "Use browser settings for microphone access." };
return new string[] { "Use browser settings for microphone access." };
#endif
}
}
Expand Down

0 comments on commit 58b269e

Please sign in to comment.