mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-19 18:03:56 +02:00
Use a better check for the 32-bit host
This commit is contained in:
@@ -28,10 +28,10 @@ int main(int argc, char* argv[]) {
|
|||||||
// this process.
|
// this process.
|
||||||
if (argc < 3) {
|
if (argc < 3) {
|
||||||
std::cerr << "Usage: "
|
std::cerr << "Usage: "
|
||||||
#ifdef _WIN64
|
#ifdef __i386__
|
||||||
<< yabridge_wine_host_name
|
|
||||||
#else
|
|
||||||
<< yabridge_wine_host_name_32bit
|
<< yabridge_wine_host_name_32bit
|
||||||
|
#else
|
||||||
|
<< yabridge_wine_host_name
|
||||||
#endif
|
#endif
|
||||||
<< " <vst_plugin_dll> <unix_domain_socket>" << std::endl;
|
<< " <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]);
|
const std::string socket_endpoint_path(argv[2]);
|
||||||
|
|
||||||
std::cerr << "Initializing yabridge host version " << yabridge_git_version
|
std::cerr << "Initializing yabridge host version " << yabridge_git_version
|
||||||
#ifndef _WIN64
|
#ifdef __i386__
|
||||||
<< " (32-bit compatibility mode)"
|
<< " (32-bit compatibility mode)"
|
||||||
#endif
|
#endif
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
|||||||
Reference in New Issue
Block a user