diff options
author | Chris Robinson <[email protected]> | 2016-08-23 23:57:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-08-23 23:57:55 -0700 |
commit | e77de8b12a01bc9385ec0b7b528274b799bac81e (patch) | |
tree | 3783954b323fc88cd30577911d6631efedd530ab /OpenAL32 | |
parent | ea2fb38627a0549c17f2a875dd9a2481712efbe3 (diff) |
Make a function definition static
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/alSource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 678654df..f5941729 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -3063,7 +3063,7 @@ ALvoid SetSourceState(ALsource *Source, ALCcontext *Context, ALenum state) * samples. The offset is relative to the start of the queue (not the start of * the current buffer). */ -ALint64 GetSourceSampleOffset(ALsource *Source, ALCdevice *device, ALuint64 *clocktime) +static ALint64 GetSourceSampleOffset(ALsource *Source, ALCdevice *device, ALuint64 *clocktime) { const ALbufferlistitem *BufferList; const ALbufferlistitem *Current; |