Move rsound.c to audio/drivers

This commit is contained in:
twinaphex 2015-01-12 22:28:59 +01:00
parent 64411558eb
commit bbc6a5cee4
4 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@
*/
#include "../driver.h"
#include "../audio_driver.h"
#include <stdlib.h>
#include "rsound.h"
#include <queues/fifo_buffer.h>

View File

@ -29,14 +29,14 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "rsound.h"
#include "drivers/rsound.h"
#if defined(__CELLOS_LV2__)
#include <cell/sysmodule.h>
#include <sys/timer.h>
#include <sys/sys_time.h>
// network headers
/* Network headers */
#include <netex/net.h>
#include <netex/errno.h>
#define NETWORK_COMPAT_HEADERS 1

View File

@ -443,7 +443,7 @@ RSOUND
============================================================ */
#ifdef HAVE_RSOUND
#include "../audio/librsound.c"
#include "../audio/rsound.c"
#include "../audio/drivers/rsound.c"
#endif
/*============================================================