aboutsummaryrefslogtreecommitdiff
path: root/plugins/dfsound/xa.c
diff options
context:
space:
mode:
authornotaz2015-01-05 04:27:03 +0200
committernotaz2015-01-05 04:29:51 +0200
commitde4a0279efefdd2e4595c8fc27f1564f4bff9341 (patch)
treea03494c7915a8b48c2ff848b35e6d5d8435d84e8 /plugins/dfsound/xa.c
parent5514a050f4e936f5c333fa1271b11bf5a6a9ea39 (diff)
downloadpcsx_rearmed-de4a0279efefdd2e4595c8fc27f1564f4bff9341.tar.gz
pcsx_rearmed-de4a0279efefdd2e4595c8fc27f1564f4bff9341.tar.bz2
pcsx_rearmed-de4a0279efefdd2e4595c8fc27f1564f4bff9341.zip
spu: finish offload code to TI C64x DSP
rather disappointing result so far, though :(
Diffstat (limited to 'plugins/dfsound/xa.c')
-rw-r--r--plugins/dfsound/xa.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/dfsound/xa.c b/plugins/dfsound/xa.c
index 1241380..6c0ce4b 100644
--- a/plugins/dfsound/xa.c
+++ b/plugins/dfsound/xa.c
@@ -90,7 +90,9 @@ INLINE void MixXA(int ns_to, int decode_pos)
static unsigned long timeGetTime_spu()
{
-#ifdef _WIN32
+#if defined(NO_OS)
+ return 0;
+#elif defined(_WIN32)
return GetTickCount();
#else
struct timeval tv;