]> git.vomp.tv Git - vompclient-marten.git/commitdiff
*** empty log message ***
authorChris Tallon <chris@vomp.tv>
Sat, 25 Nov 2006 17:56:58 +0000 (17:56 +0000)
committerChris Tallon <chris@vomp.tv>
Sat, 25 Nov 2006 17:56:58 +0000 (17:56 +0000)
vvideolive.cc

index 9bcdcddbd0b13c59c16e6dbb813b9391162fe23f..e477a859d9312ef5c8066068bf4b13011fd1df9e 100644 (file)
@@ -41,12 +41,12 @@ VVideoLive::VVideoLive(ChannelList* tchanList, ULONG tstreamType, VChannelList*
 
   if (streamType == VDR::RADIO)
   {
-    (PlayerRadio*)player = (void*)new PlayerRadio(Command::getInstance(), this, false);
+    player = (void*)new PlayerRadio(Command::getInstance(), this, false);
     ((PlayerRadio*)player)->init(0, 0);
   }
   else
   {
-    (Player*)player = (void*)new Player(Command::getInstance(), this, false);
+    player = (void*)new Player(Command::getInstance(), this, false);
     ((Player*)player)->init();
   }