mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-01-31 13:40:38 +00:00
Move efxlib.h to sound/
This commit is contained in:
parent
b54bc73532
commit
f4406290d1
2 changed files with 5 additions and 6 deletions
|
@ -4,7 +4,7 @@
|
|||
#ifndef __EFXLIBH
|
||||
#define __EFXLIBH
|
||||
|
||||
#include "eax4.h"
|
||||
#include "../openal/include/eax4.h"
|
||||
|
||||
|
||||
|
||||
|
@ -16,13 +16,13 @@ class idSoundEffect
|
|||
public:
|
||||
idSoundEffect() {
|
||||
};
|
||||
~idSoundEffect() {
|
||||
~idSoundEffect() {
|
||||
if ( data && datasize ) {
|
||||
Mem_Free( data );
|
||||
data = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
idStr name;
|
||||
int datasize;
|
||||
void *data;
|
||||
|
@ -39,7 +39,7 @@ public:
|
|||
// Public data members.
|
||||
|
||||
private:
|
||||
|
||||
|
||||
public:
|
||||
idEFXFile();
|
||||
~idEFXFile();
|
||||
|
@ -58,4 +58,3 @@ public:
|
|||
|
||||
|
||||
#endif // __EFXLIBH
|
||||
|
|
@ -45,7 +45,7 @@ If you have questions concerning this license or the applicable additional terms
|
|||
#include <AL/alc.h>
|
||||
#define ID_ALCHAR
|
||||
#endif
|
||||
#include "../openal/include/efxlib.h"
|
||||
#include "efxlib.h"
|
||||
|
||||
// demo sound commands
|
||||
typedef enum {
|
||||
|
|
Loading…
Reference in a new issue