Skip to content

Commit bd44fa4

Browse files
committed
Chg; ToLsonCore to avoid overload conflicts
1 parent a5b2f20 commit bd44fa4

File tree

2 files changed

+65
-92
lines changed

2 files changed

+65
-92
lines changed

NeoLua/Lua.Runtime.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ internal static void RtWriteValue(TextWriter tw, object value, bool prettyFormat
776776
case LuaEmitTypeCode.Object:
777777
if (type == typeof(LuaTable))
778778
{
779-
LuaTable.ToLson((LuaTable)value, tw, prettyFormatted, currentLevel + 1, indent);
779+
LuaTable.ToLsonCore((LuaTable)value, tw, prettyFormatted, indent, currentLevel + 1);
780780
break;
781781
}
782782
else if (type == typeof(Guid))

0 commit comments

Comments
 (0)