Skip to content

Commit

Permalink
remove inner file
Browse files Browse the repository at this point in the history
 fix type check
  • Loading branch information
pangweiwei committed Aug 15, 2018
1 parent 03ef3c5 commit 94c714f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 42 deletions.
2 changes: 1 addition & 1 deletion Assets/Plugins/Slua_Managed/LuaObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ public static bool matchType(IntPtr l, int p, LuaTypes lt, Type t)
if (t == typeof(LuaTable) || t.IsArray)
return true;
else if (t.IsValueType)
return true;//luaTypeCheck(l, p, t.Name);
return luaTypeCheck(l, p, t.Name);
else if (LuaDLL.luaS_subclassof(l, p, t.Name) == 1)
return true;
else
Expand Down
41 changes: 0 additions & 41 deletions Assets/Plugins/Slua_Managed/SLogger.cs

This file was deleted.

0 comments on commit 94c714f

Please sign in to comment.