mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 01:11:18 +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 *
|
||||
PluginInfo (void) {
|
||||
plugin_info.type = qfp_sound;
|
||||
|
@ -202,13 +212,3 @@ PluginInfo (void) {
|
|||
|
||||
return &plugin_info;
|
||||
}
|
||||
|
||||
void
|
||||
SNDDMA_BlockSound (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
SNDDMA_UnblockSound (void)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue