mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 14:20:59 +00:00
this should fix compiling snd_sun on solaris
This commit is contained in:
parent
b26c2b2336
commit
db75da7733
1 changed files with 3 additions and 3 deletions
|
@ -253,7 +253,7 @@ SNDDMA_UnblockSound (void)
|
|||
|
||||
QFPLUGIN plugin_t *
|
||||
snd_output_sun_PluginInfo (void) {
|
||||
plugin_info.type = qfp_sound;
|
||||
plugin_info.type = qfp_snd_output;
|
||||
plugin_info.api_version = QFPLUGIN_VERSION;
|
||||
plugin_info.plugin_version = "0.1";
|
||||
plugin_info.description = "SUN digital output";
|
||||
|
@ -266,11 +266,11 @@ snd_output_sun_PluginInfo (void) {
|
|||
|
||||
plugin_info_data.general = &plugin_info_general_data;
|
||||
plugin_info_data.input = NULL;
|
||||
plugin_info_data.sound = &plugin_info_sound_data;
|
||||
plugin_info_data.snd_output = &plugin_info_sound_data;
|
||||
|
||||
plugin_info_funcs.general = &plugin_info_general_funcs;
|
||||
plugin_info_funcs.input = NULL;
|
||||
plugin_info_funcs.sound = &plugin_info_sound_funcs;
|
||||
plugin_info_funcs.snd_output = &plugin_info_sound_funcs;
|
||||
|
||||
plugin_info_general_funcs.p_Init = NULL; //SNDDMA_Init_Cvars;
|
||||
plugin_info_general_funcs.p_Shutdown = NULL;
|
||||
|
|
Loading…
Reference in a new issue