mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
fix the undefined symbol error
This commit is contained in:
parent
52b4daafb3
commit
2732797574
1 changed files with 10 additions and 10 deletions
|
@ -159,6 +159,16 @@ SND_LocalSound (const char *s)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
SND_BlockSound (void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
SND_UnblockSound (void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
plugin_t *
|
plugin_t *
|
||||||
PluginInfo (void) {
|
PluginInfo (void) {
|
||||||
plugin_info.type = qfp_sound;
|
plugin_info.type = qfp_sound;
|
||||||
|
@ -202,13 +212,3 @@ PluginInfo (void) {
|
||||||
|
|
||||||
return &plugin_info;
|
return &plugin_info;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
SNDDMA_BlockSound (void)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
SNDDMA_UnblockSound (void)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue