Skip to content

Commit

Permalink
Wine now uses *.exe for scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
falkTX committed Jun 9, 2012
1 parent feef4af commit 20c2bbb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions remotevstclient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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();
}
Expand Down Expand Up @@ -318,7 +318,7 @@ RemoteVSTClient::queryPlugins(std::vector<PluginRecord> &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;
Expand Down Expand Up @@ -353,7 +353,7 @@ RemoteVSTClient::queryPlugins(std::vector<PluginRecord> &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;
Expand Down

0 comments on commit 20c2bbb

Please sign in to comment.