temporarily fix build by removing lua string library which has a missing file

This commit is contained in:
zeromus 2014-01-20 05:13:43 +00:00
parent c10fbed709
commit 7a07a910f8
2 changed files with 1 additions and 2 deletions

View File

@ -117,7 +117,6 @@
<Compile Include="lua\EmuLuaLibrary.Movie.cs" />
<Compile Include="lua\EmuLuaLibrary.NES.cs" />
<Compile Include="lua\EmuLuaLibrary.SNES.cs" />
<Compile Include="lua\EmuLuaLibrary.String.cs" />
<Compile Include="lua\LuaDocumentation.cs" />
<Compile Include="lua\LuaFile.cs" />
<Compile Include="lua\LuaFileList.cs" />

View File

@ -94,7 +94,7 @@ namespace BizHawk.Client.EmuHawk
new NESLuaLibrary().LuaRegister(lua, Docs);
new SavestateLuaLibrary().LuaRegister(lua, Docs);
new SNESLuaLibrary().LuaRegister(lua, Docs);
new StringLuaLibrary().LuaRegister(lua, Docs);
//new StringLuaLibrary().LuaRegister(lua, Docs);
Docs.Sort();
}