Browse Source

Fix typo leading to unloadable plugins, sorry

tags/1.9.8
falkTX 7 years ago
parent
commit
5b97ec1e00
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      source/includes/CarlaDefines.h
  2. +1
    -1
      source/modules/water/memory/Atomic.h
  3. +1
    -1
      source/modules/water/water.h

+ 1
- 1
source/includes/CarlaDefines.h View File

@@ -57,7 +57,7 @@
#endif

#if defined (__LP64__) || defined (_LP64) || defined (__arm64__) || defined(CARLA_OS_WIN64)
# define CARLA_64BIT
# define CARLA_OS_64BIT
#endif

/* Check for C++11 support */


+ 1
- 1
source/modules/water/memory/Atomic.h View File

@@ -146,7 +146,7 @@ public:
This is exposed publicly in case you need to manipulate it directly
for performance reasons.
*/
#ifdef CARLA_64BIT
#ifdef CARLA_OS_64BIT
__attribute__ ((aligned (8)))
#else
__attribute__ ((aligned (4)))


+ 1
- 1
source/modules/water/water.h View File

@@ -107,7 +107,7 @@ typedef long long int64;
/** A platform-independent 64-bit unsigned integer type. */
typedef unsigned long long uint64;
#ifdef CARLA_64BIT
#ifdef CARLA_OS_64BIT
/** A signed integer type that's guaranteed to be large enough to hold a pointer without truncating it. */
typedef int64 pointer_sized_int;
/** An unsigned integer type that's guaranteed to be large enough to hold a pointer without truncating it. */


Loading…
Cancel
Save