diff options
author | Chris Robinson <[email protected]> | 2012-04-16 22:11:03 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-04-16 22:11:03 -0700 |
commit | e47557630eded79f5b15ec78f646542301ba705c (patch) | |
tree | 22b1db3d75dcba12ff9947243d60711a50ba4458 /OpenAL32/Include/alSource.h | |
parent | f6a1e53f191212112a5c31803c7018387d8aa715 (diff) |
Use a double to store the source offset and don't use milliseconds for seconds
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index be3210bd..cabf404e 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -77,8 +77,8 @@ typedef struct ALsource volatile ALfloat RoomRolloffFactor; volatile ALfloat DopplerFactor; - ALint lOffset; - ALint lOffsetType; + ALdouble Offset; + ALenum OffsetType; // Source Type (Static, Streaming, or Undetermined) volatile ALint lSourceType; |