Use a better check for the 32-bit host

This commit is contained in:
Robbert van der Helm
2020-04-30 15:09:13 +02:00
parent 5958f8058a
commit dcc1a34a41
+4 -4
View File
@@ -28,10 +28,10 @@ int main(int argc, char* argv[]) {
// this process.
if (argc < 3) {
std::cerr << "Usage: "
#ifdef _WIN64
<< yabridge_wine_host_name
#else
#ifdef __i386__
<< yabridge_wine_host_name_32bit
#else
<< yabridge_wine_host_name
#endif
<< " <vst_plugin_dll> <unix_domain_socket>" << std::endl;
@@ -42,7 +42,7 @@ int main(int argc, char* argv[]) {
const std::string socket_endpoint_path(argv[2]);
std::cerr << "Initializing yabridge host version " << yabridge_git_version
#ifndef _WIN64
#ifdef __i386__
<< " (32-bit compatibility mode)"
#endif
<< std::endl;