Browse Source

Fix Windows build

tags/1.9.5
falkTX 10 years ago
parent
commit
46ecbdbec3
2 changed files with 4 additions and 1 deletions
  1. +3
    -0
      source/Makefile.mk
  2. +1
    -1
      source/backend/plugin/JucePlugin.cpp

+ 3
- 0
source/Makefile.mk View File

@@ -216,6 +216,9 @@ endif
ifeq ($(HAVE_QT5),true) ifeq ($(HAVE_QT5),true)
HAVE_QT=true HAVE_QT=true
endif endif
ifeq ($(WIN32),true)
HAVE_QT=true
endif


# -------------------------------------------------------------- # --------------------------------------------------------------
# Set PyQt tools # Set PyQt tools


+ 1
- 1
source/backend/plugin/JucePlugin.cpp View File

@@ -890,7 +890,7 @@ public:
} }
} }


bool processSingle(float** const inBuffer, float** const outBuffer, const uint32_t frames)
bool processSingle(const float** const inBuffer, float** const outBuffer, const uint32_t frames)
{ {
CARLA_SAFE_ASSERT_RETURN(frames > 0, false); CARLA_SAFE_ASSERT_RETURN(frames > 0, false);




Loading…
Cancel
Save