Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 223171
Collapse All | Expand All

(-)pygame-1.8.0release/src/mixer.c (-4 / +3 lines)
Lines 173-182 Link Here
173
173
174
174
175
175
176
    /*make chunk a power of 2*/
176
    /*make chunk a power of 2, min 256*/
177
    for (i = 0; 1 << i < chunk; ++i) {
177
    for (i = 256; i < chunk; i <<= 1); // Empty loop body.
178
        chunk = MAX (1 << i, 256);
178
    chunk = i;
179
    }
180
179
181
    if (!SDL_WasInit (SDL_INIT_AUDIO))
180
    if (!SDL_WasInit (SDL_INIT_AUDIO))
182
    {
181
    {

Return to bug 223171