diff options
Diffstat (limited to '')
-rw-r--r-- | libraries/libLSL/libLSL.csproj | 1 | ||||
-rw-r--r-- | libraries/libLSL/lslByteCode.cs | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/libraries/libLSL/libLSL.csproj b/libraries/libLSL/libLSL.csproj index ae6e207..fe8822b 100644 --- a/libraries/libLSL/libLSL.csproj +++ b/libraries/libLSL/libLSL.csproj | |||
@@ -34,6 +34,7 @@ | |||
34 | </ItemGroup> | 34 | </ItemGroup> |
35 | <ItemGroup> | 35 | <ItemGroup> |
36 | <Compile Include="lsl.cs" /> | 36 | <Compile Include="lsl.cs" /> |
37 | <Compile Include="lslByteCode.cs" /> | ||
37 | <Compile Include="lslscript.cs" /> | 38 | <Compile Include="lslscript.cs" /> |
38 | <Compile Include="Properties\AssemblyInfo.cs" /> | 39 | <Compile Include="Properties\AssemblyInfo.cs" /> |
39 | </ItemGroup> | 40 | </ItemGroup> |
diff --git a/libraries/libLSL/lslByteCode.cs b/libraries/libLSL/lslByteCode.cs index 1b37f49..ea9e0b0 100644 --- a/libraries/libLSL/lslByteCode.cs +++ b/libraries/libLSL/lslByteCode.cs | |||
@@ -74,6 +74,10 @@ namespace libLSL | |||
74 | pushBytes(getBytes(16)); | 74 | pushBytes(getBytes(16)); |
75 | break; | 75 | break; |
76 | 76 | ||
77 | case lslOpcodes.OP_STORE: | ||
78 | // Somefin. | ||
79 | break; | ||
80 | |||
77 | default: | 81 | default: |
78 | break; | 82 | break; |
79 | } | 83 | } |