diff options
author | Adam Frisby | 2007-05-04 04:03:56 +0000 |
---|---|---|
committer | Adam Frisby | 2007-05-04 04:03:56 +0000 |
commit | dced1d3df909c253111692f2efe0ff5bbe367e3e (patch) | |
tree | e57bc6593f52cad13b4cfbed17c06b4cdaeb7278 | |
parent | MySQL could now work in theory. Any testers? (diff) | |
download | opensim-SC_OLD-dced1d3df909c253111692f2efe0ff5bbe367e3e.zip opensim-SC_OLD-dced1d3df909c253111692f2efe0ff5bbe367e3e.tar.gz opensim-SC_OLD-dced1d3df909c253111692f2efe0ff5bbe367e3e.tar.bz2 opensim-SC_OLD-dced1d3df909c253111692f2efe0ff5bbe367e3e.tar.xz |
Dunno, I must have changed something.
-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> |