1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-24 21:37:46 +00:00

Rewrite "no game found" message

This commit is contained in:
Joshua Goins 2022-04-09 17:38:32 -04:00
parent f3b02c420e
commit 457c185de7

View file

@ -96,7 +96,7 @@ int main(int argc, char* argv[]) {
w.show();
if(!QDir(c.getProfile(c.defaultProfileIndex).gamePath).exists()) {
auto messageBox = new QMessageBox(QMessageBox::Information, "No Game Found", "No game was found to be installed yet. Would you like to install FFXIV now?", QMessageBox::NoButton, &w);
auto messageBox = new QMessageBox(QMessageBox::Information, "No Game Found", "FFXIV is not installed. Would you like to install it now?", QMessageBox::NoButton, &w);
auto installButton = messageBox->addButton("Install Game", QMessageBox::HelpRole);
c.connect(installButton, &QPushButton::clicked, [&c, messageBox] {