From 20c2bbb1e608707be11549b2834ee7d48b968f76 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 9 Jun 2012 04:19:01 +0100 Subject: [PATCH] Wine now uses *.exe for scripts --- remotevstclient.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/remotevstclient.cpp b/remotevstclient.cpp index 7fbcbae..6886b43 100644 --- a/remotevstclient.cpp +++ b/remotevstclient.cpp @@ -55,7 +55,7 @@ RemoteVSTClient::RemoteVSTClient(std::string dllName, bool showGUI) : closedir(directory); struct stat st; - std::string fileName = subDir + "/dssi-vst-server"; + std::string fileName = subDir + "/dssi-vst-server.exe"; if (stat(fileName.c_str(), &st)) { continue; @@ -89,7 +89,7 @@ RemoteVSTClient::RemoteVSTClient(std::string dllName, bool showGUI) : if (!found) { cleanup(); - throw((std::string)"Failed to find dssi-vst-server executable"); + throw((std::string)"Failed to find dssi-vst-server.exe"); } else { syncStartup(); } @@ -318,7 +318,7 @@ RemoteVSTClient::queryPlugins(std::vector &plugins) closedir(directory); struct stat st; - std::string fileName = subDir + "/dssi-vst-scanner"; + std::string fileName = subDir + "/dssi-vst-scanner.exe"; if (stat(fileName.c_str(), &st)) { continue; @@ -353,7 +353,7 @@ RemoteVSTClient::queryPlugins(std::vector &plugins) if (!found) { unlink(fifoFile); - throw((std::string)"Failed to find dssi-vst-scanner executable"); + throw((std::string)"Failed to find dssi-vst-scanner.exe"); } struct pollfd pfd;