LogSink: Log BIOS print syscall messages if EE console is enabled

This commit is contained in:
Abel Briggs 2023-05-21 20:37:53 -07:00 committed by refractionpcsx2
parent 1b28980454
commit d0346436fb
1 changed files with 5 additions and 1 deletions

View File

@ -411,7 +411,11 @@ void LogSink::UpdateLogging(SettingsInterface& si)
const bool any_logging_sinks = system_console_enabled || file_logging_enabled;
DevConWriterEnabled = any_logging_sinks && (IsDevBuild || si.GetBoolValue("Logging", "EnableVerbose", false));
SysConsole.eeConsole.Enabled = any_logging_sinks && si.GetBoolValue("Logging", "EnableEEConsole", false);
const bool ee_console_enabled = any_logging_sinks && si.GetBoolValue("Logging", "EnableEEConsole", false);
SysConsole.eeConsole.Enabled = ee_console_enabled;
SysConsole.sysoutConsole.Enabled = ee_console_enabled;
SysConsole.iopConsole.Enabled = any_logging_sinks && si.GetBoolValue("Logging", "EnableIOPConsole", false);
SysTrace.IOP.R3000A.Enabled = true;
SysTrace.IOP.COP2.Enabled = true;