mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-17 21:24:20 +00:00
Update Encoding for special characters
This commit is contained in:
@@ -46,7 +46,7 @@ namespace SharpOSC
|
||||
|
||||
int i = 0;
|
||||
byte[] output = new byte[len];
|
||||
Encoding.ASCII.GetBytes(bundle).CopyTo(output, i);
|
||||
Encoding.UTF8.GetBytes(bundle).CopyTo(output, i);
|
||||
i += bundleTagLen;
|
||||
tag.CopyTo(output, i);
|
||||
i += tag.Length;
|
||||
|
||||
Reference in New Issue
Block a user