Accept string not object for `LuaLibraryBase.Log`
This commit is contained in:
parent
45f64f62de
commit
1dbc40e386
|
@ -62,9 +62,7 @@ namespace BizHawk.Client.Common
|
|||
return (int)(double)luaArg;
|
||||
}
|
||||
|
||||
protected void Log(object message)
|
||||
{
|
||||
LogOutputCallback?.Invoke(message.ToString());
|
||||
}
|
||||
protected void Log(string message)
|
||||
=> LogOutputCallback?.Invoke(message);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue