upgrade to JUCE 5.4.3. Remove (probably) unused JUCE modules. Remove VST2 target (it's been end-of-life'd by Steinberg and by JUCE)
This commit is contained in:
@ -329,11 +329,11 @@ long oggpack_read(oggpack_buffer *b,int bits){
|
||||
if(bits>8){
|
||||
ret|=b->ptr[1]<<(8-b->endbit);
|
||||
if(bits>16){
|
||||
ret|=b->ptr[2]<<(16-b->endbit);
|
||||
ret|=((unsigned long) b->ptr[2]) << (16 - b->endbit);
|
||||
if(bits>24){
|
||||
ret|=b->ptr[3]<<(24-b->endbit);
|
||||
ret |= ((unsigned long) b->ptr[3]) << (24 - b->endbit);
|
||||
if(bits>32 && b->endbit){
|
||||
ret|=b->ptr[4]<<(32-b->endbit);
|
||||
ret |= ((unsigned long) b->ptr[4]) << (32 - b->endbit);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user