Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2023-05-06 21:27:17 +02:00
parent 7d04167083
commit 9fb3f216b0
No known key found for this signature in database
GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 4 additions and 4 deletions

View File

@ -87,7 +87,7 @@ PluginListRefreshDialog::PluginListRefreshDialog(QWidget* const parent, const bo
#ifdef CARLA_OS_WIN
#define APP_EXT ".exe"
#else
#define APP_EXT ".exe"
#define APP_EXT ""
#endif
QString hostPathBinaries;

View File

@ -1,6 +1,6 @@
/*
* Carla Bridge utils
* Copyright (C) 2013-2022 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2013-2023 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
@ -214,8 +214,8 @@ const char* PluginBridgeNonRtServerOpcode2str(const PluginBridgeNonRtServerOpcod
// -------------------------------------------------------------------------------------------------------------------
static const std::size_t kBridgeRtClientDataMidiOutSize = 511*4;
static const std::size_t kBridgeBaseMidiOutHeaderSize = 6U /* time, port and size */;
static constexpr const std::size_t kBridgeRtClientDataMidiOutSize = 511*4;
static constexpr const std::size_t kBridgeBaseMidiOutHeaderSize = 6U /* time, port and size */;
// Server => Client RT
struct BridgeRtClientData {