Fix accidental static import of IsWow64Process2() and tweak message text

This commit is contained in:
Cameron Gutman
2020-12-28 13:32:02 -06:00
parent 565bba6e55
commit 44b61d9252
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -405,7 +405,7 @@ ApplicationWindow {
NavigableMessageDialog {
id: wow64Dialog
standardButtons: Dialog.Ok | Dialog.Cancel
text: qsTr("This PC is running the %1 version of Windows. Please download the %1 version of Moonlight for the best streaming performance.").arg(SystemProperties.friendlyNativeArchName)
text: qsTr("This version of Moonlight isn't optimized for your PC. Please download the '%1' version of Moonlight for the best streaming performance.").arg(SystemProperties.friendlyNativeArchName)
onAccepted: {
Qt.openUrlExternally("https://github.com/moonlight-stream/moonlight-qt/releases");
}