1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Windows: faster rendering on 32-bit video cards. Audio fix for iOS.

This commit is contained in:
jules 2012-02-29 15:10:11 +00:00
parent aab3a6a6eb
commit 96976db624
3 changed files with 17 additions and 29 deletions

View file

@ -71,7 +71,7 @@ namespace PrimesHelpers
i = (i - 1) >> 1;
while (i < numBits)
while (i < (unsigned int) numBits)
{
result.setBit ((int) i);
i += prime;