diff options
author | twinaphex | 2013-03-21 23:04:13 +0100 |
---|---|---|
committer | notaz | 2013-03-25 03:43:47 +0200 |
commit | 706252fcdbe50e0be5779703d1e92fc849f9e93f (patch) | |
tree | 07b42d8b231c3d1c38fb36376daa094b4f21390c /plugins | |
parent | 101e053c72e9299bfbd1cbf6a8de9ba6cff11e4c (diff) | |
download | pcsx_rearmed-706252fcdbe50e0be5779703d1e92fc849f9e93f.tar.gz pcsx_rearmed-706252fcdbe50e0be5779703d1e92fc849f9e93f.tar.bz2 pcsx_rearmed-706252fcdbe50e0be5779703d1e92fc849f9e93f.zip |
Don't compile in null sound driver for libretro and add
Makefile.libretro
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/dfsound/out.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/dfsound/out.c b/plugins/dfsound/out.c index 150d718..5ddd3f4 100644 --- a/plugins/dfsound/out.c +++ b/plugins/dfsound/out.c @@ -32,8 +32,9 @@ void SetupSound(void) #endif #ifdef HAVE_LIBRETRO REGISTER_DRIVER(libretro); -#endif +#else REGISTER_DRIVER(none); +#endif } for (i = 0; i < driver_count; i++) |