修复SCR.print的错误

This commit is contained in:
MrZ626
2020-12-25 22:12:13 +08:00
parent d15ca6e6d1
commit e3e36d943e

View File

@@ -34,7 +34,9 @@ end
function SCR.print()
LOG.print("Screen Info:")
for k,v in next,SCR do
LOG.print(k..": "..v)
if type(v)=="number"then
LOG.print(k..": "..v)
end
end
end
return SCR