From dcc1a34a41f268361442ec80b94411a101d8c464 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 30 Apr 2020 15:09:13 +0200 Subject: [PATCH] Use a better check for the 32-bit host --- src/wine-host/vst-host.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wine-host/vst-host.cpp b/src/wine-host/vst-host.cpp index 44e0a53d..274ac272 100644 --- a/src/wine-host/vst-host.cpp +++ b/src/wine-host/vst-host.cpp @@ -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 << " " << 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;