changeset 536:8cdd288ebb53

Removed cruft.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 21 Feb 2007 00:25:00 +0000
parents d609d0ece252
children 3982cba928f2
files src/xmms-sid.c
diffstat 1 files changed, 1 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/xmms-sid.c	Wed Feb 21 00:12:04 2007 +0000
+++ b/src/xmms-sid.c	Wed Feb 21 00:25:00 2007 +0000
@@ -589,13 +589,7 @@
 	xs_status.currSong = xs_status.tuneInfo->startTune;
 
 	/* Start the playing thread! */
-#ifdef AUDACIOUS_PLUGIN
-	xs_decode_thread = g_thread_create((GThreadFunc) xs_playthread, NULL, TRUE, NULL);
-	if (xs_decode_thread == NULL)
-#else
-	if (pthread_create(&xs_decode_thread, NULL, xs_playthread, NULL) < 0)
-#endif
-	{
+	if (pthread_create(&xs_decode_thread, NULL, xs_playthread, NULL) < 0) {
 		xs_error(_("Couldn't create playing thread!\n"));
 		xs_tuneinfo_free(xs_status.tuneInfo);
 		xs_status.tuneInfo = NULL;