aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alFontsound.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-01-03 20:21:12 -0800
committerChris Robinson <[email protected]>2014-01-03 20:21:12 -0800
commit42a67731c411775fe9de5d3a05edfd10205cc70f (patch)
tree39dae63b0c7c048e81c1263897c68a55d7685fa6 /OpenAL32/alFontsound.c
parent3a31402b1ea3cb62da6ddcac3f41570c7cfaa687 (diff)
Add storage for a default soundfont object
Diffstat (limited to 'OpenAL32/alFontsound.c')
-rw-r--r--OpenAL32/alFontsound.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/alFontsound.c b/OpenAL32/alFontsound.c
index 4ec74ebc..540f726b 100644
--- a/OpenAL32/alFontsound.c
+++ b/OpenAL32/alFontsound.c
@@ -16,7 +16,7 @@ extern inline struct ALfontsound *LookupFontsound(ALCdevice *device, ALuint id);
extern inline struct ALfontsound *RemoveFontsound(ALCdevice *device, ALuint id);
static void ALfontsound_Construct(ALfontsound *self);
-static void ALfontsound_Destruct(ALfontsound *self);
+void ALfontsound_Destruct(ALfontsound *self);
void ALfontsound_setPropi(ALfontsound *self, ALCcontext *context, ALenum param, ALint value);
@@ -541,7 +541,7 @@ static void ALfontsound_Construct(ALfontsound *self)
self->id = 0;
}
-static void ALfontsound_Destruct(ALfontsound *self)
+void ALfontsound_Destruct(ALfontsound *self)
{
ALsizei i;