aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries
diff options
context:
space:
mode:
authorAdam Frisby2007-05-04 04:03:56 +0000
committerAdam Frisby2007-05-04 04:03:56 +0000
commitdced1d3df909c253111692f2efe0ff5bbe367e3e (patch)
treee57bc6593f52cad13b4cfbed17c06b4cdaeb7278 /libraries
parentMySQL could now work in theory. Any testers? (diff)
downloadopensim-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.
Diffstat (limited to 'libraries')
-rw-r--r--libraries/libLSL/lslByteCode.cs6
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>