From c440e9586aedbc29a099cec48c7b71612465bf60 Mon Sep 17 00:00:00 2001 From: kervala Date: Sun, 6 Dec 2015 16:54:57 +0100 Subject: [PATCH] Changed: There is no suffix under Linux or OS X --- .../client/client_config_qt/client_config_dialog.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/code/ryzom/tools/client/client_config_qt/client_config_dialog.cpp b/code/ryzom/tools/client/client_config_qt/client_config_dialog.cpp index c6bd9190f..4d1fc2060 100644 --- a/code/ryzom/tools/client/client_config_qt/client_config_dialog.cpp +++ b/code/ryzom/tools/client/client_config_qt/client_config_dialog.cpp @@ -163,12 +163,10 @@ void CClientConfigDialog::onClickPlay() QProcess::startDetached( "ryzom_client_rd.exe" ); if( !started ) QProcess::startDetached( "ryzom_client_d.exe" ); +#elif defined(Q_OS_MAC) + started = QProcess::startDetached( "./Ryzom" ); #else - started = QProcess::startDetached( "./ryzom_client_r" ); - if( !started ) - QProcess::startDetached( "./ryzom_client_rd" ); - if( !started ) - QProcess::startDetached( "./ryzom_client_d" ); + started = QProcess::startDetached( "./ryzom_client" ); #endif onClickOK();