From 960e1bac877c9d37f61c3ccd6c5fa5061c9ba1b0 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Thu, 9 Apr 2026 20:53:42 +0500 Subject: [PATCH] fix(PrintInstanceInfo): add break before OS info Signed-off-by: Octol1ttle (cherry picked from commit 4cf8cf7d18d63b113a0c25e096074679e61f99f9) --- launcher/minecraft/launch/PrintInstanceInfo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/launcher/minecraft/launch/PrintInstanceInfo.cpp b/launcher/minecraft/launch/PrintInstanceInfo.cpp index d837f5faf..7bfe73746 100644 --- a/launcher/minecraft/launch/PrintInstanceInfo.cpp +++ b/launcher/minecraft/launch/PrintInstanceInfo.cpp @@ -61,6 +61,7 @@ void PrintInstanceInfo::executeTask() auto instance = m_parent->instance(); QStringList log; + log << ""; log << "OS: " + QString("%1 | %2 | %3").arg(QSysInfo::prettyProductName(), QSysInfo::kernelType(), QSysInfo::kernelVersion()); #ifdef Q_OS_FREEBSD ::runSysctlHwModel(log);