Fix lua console null output logging

- closes #3810
- fixes bb7f933429
This commit is contained in:
Morilli 2023-11-02 13:56:20 +01:00
parent ebaafe2658
commit abc5ddcc6e
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ namespace BizHawk.Client.EmuHawk
if (outputs == null || outputs.Length == 0 || (outputs.Length == 1 && outputs[0] is null))
{
sb.Append($"(no return){terminator}");
Tools.LuaConsole.WriteToOutputWindow($"(no return){terminator}");
return;
}