Skip to content

Commit

Permalink
Make contexts processing (not suspended) by default.
Browse files Browse the repository at this point in the history
Apparently I've been violating the spec all this time.
  • Loading branch information
icculus committed Dec 31, 2012
1 parent 1d965c3 commit 8def887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osx/alContext.c
Expand Up @@ -279,7 +279,7 @@ ALCAPI void * ALCAPIENTRY alcCreateContext(ALCdevice *device, ALint *attrlist)
ctx->propagationSpeed = 1.0f;
ctx->distanceModel = AL_INVERSE_DISTANCE;
ctx->inUse = AL_TRUE;
ctx->suspended = AL_TRUE;
ctx->suspended = AL_FALSE;
ctx->device = dev;
} // else

Expand Down

0 comments on commit 8def887

Please sign in to comment.