flush logs when forwarding

This commit is contained in:
Cynthia 2026-06-25 08:04:43 -07:00
parent 53a74e44df
commit 5a23d3a286

View File

@ -561,6 +561,7 @@ namespace coreinit
if (s_forwardConsoleLogs) {
if (cafeLogType == CafeLogType::OSCONSOLE) {
fwrite(msg, 1, len, stdout);
fflush(stdout);
} else {
fwrite(msg, 1, len, stderr);
}