diff options
Diffstat (limited to 'libraries/libLSL')
-rw-r--r-- | libraries/libLSL/lslByteCode.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/libLSL/lslByteCode.cs b/libraries/libLSL/lslByteCode.cs index ea9e0b0..4dffe22 100644 --- a/libraries/libLSL/lslByteCode.cs +++ b/libraries/libLSL/lslByteCode.cs | |||
@@ -13,8 +13,8 @@ namespace libLSL | |||
13 | byte ins = nextInstruction(); | 13 | byte ins = nextInstruction(); |
14 | lslOpcodes code = (lslOpcodes)ins; | 14 | lslOpcodes code = (lslOpcodes)ins; |
15 | 15 | ||
16 | Object arg1; | 16 | Object arg1 = (Object)32; |
17 | Object arg2; | 17 | Object arg2 = (Object)32; |
18 | 18 | ||
19 | switch (code) | 19 | switch (code) |
20 | { | 20 | { |
@@ -117,7 +117,7 @@ namespace libLSL | |||
117 | /// <returns>Ze bytes!</returns> | 117 | /// <returns>Ze bytes!</returns> |
118 | byte[] getBytes(int num) | 118 | byte[] getBytes(int num) |
119 | { | 119 | { |
120 | 120 | return new byte[1]; | |
121 | } | 121 | } |
122 | 122 | ||
123 | /// <summary> | 123 | /// <summary> |