Browse Source

Fixed off-by-one bug

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@152 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
theno23 24 years ago
parent
commit
9175ca7d19
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      memops.c

+ 1
- 1
memops.c View File

@@ -27,7 +27,7 @@

#include <jack/memops.h>

#define SAMPLE_MAX_24BIT 8388608.0f
#define SAMPLE_MAX_24BIT 8388607.0f
#define SAMPLE_MAX_16BIT 32767.0f

/* Round float to int (can't go in memops.h otherwise it gets multiply


Loading…
Cancel
Save