diff --git a/launcher/src/profile.cpp b/launcher/src/profile.cpp index 297e5a2..48488ed 100644 --- a/launcher/src/profile.cpp +++ b/launcher/src/profile.cpp @@ -250,7 +250,11 @@ QString Profile::uuid() const QString Profile::wineVersionText() const { if (!isWineInstalled()) { - return i18n("Wine is not installed."); + if (config()->wineType() == Profile::WineType::BuiltIn) { + return i18n("Wine will be installed when you launch the game."); + } else { + return i18n("Wine is not installed."); + } } else { return m_wineVersion; }