mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
Fix wrong parameters
This commit is contained in:
parent
13911b051a
commit
f2b49f7ccb
1 changed files with 14 additions and 8 deletions
|
@ -50,17 +50,23 @@ void SNDDMA_Submit(void)
|
||||||
void SNDDMA_Activate(void) {
|
void SNDDMA_Activate(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
sfxHandle_t S_RegisterSound( const char *sample, qboolean compressed )
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void S_StartLocalSound( sfxHandle_t sfx, int channelNum ) {
|
|
||||||
}
|
|
||||||
|
|
||||||
void S_ClearSoundBuffer( void ) {
|
void S_ClearSoundBuffer( void ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int S_IsSoundPlaying( int channel_number, const char *sfxName ){
|
int S_IsSoundPlaying( int channel_number, const char *sfxName ){
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(NO_MODERN_DMA) && NO_MODERN_DMA
|
||||||
|
void S_StartLocalSound(sfxHandle_t sfx, int channelNum) {
|
||||||
|
}
|
||||||
|
sfxHandle_t S_RegisterSound(const char* sample, qboolean compressed) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
void S_StartLocalSound(const char* sound_name, qboolean force_load) {
|
||||||
|
}
|
||||||
|
sfxHandle_t S_RegisterSound(const char* name, int streamed, qboolean force_load) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue