From 55dd83fd9fbbbd125074edc2819a65a78fa9c61b Mon Sep 17 00:00:00 2001 From: Chris Tallon Date: Sat, 25 Nov 2006 16:52:49 +0000 Subject: [PATCH] Update for windows --- vvideolive.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vvideolive.cc b/vvideolive.cc index 919f164..9bcdcdd 100644 --- a/vvideolive.cc +++ b/vvideolive.cc @@ -41,12 +41,12 @@ VVideoLive::VVideoLive(ChannelList* tchanList, ULONG tstreamType, VChannelList* if (streamType == VDR::RADIO) { - (PlayerRadio*)player = new PlayerRadio(Command::getInstance(), this, false); + (PlayerRadio*)player = (void*)new PlayerRadio(Command::getInstance(), this, false); ((PlayerRadio*)player)->init(0, 0); } else { - (Player*)player = new Player(Command::getInstance(), this, false); + (Player*)player = (void*)new Player(Command::getInstance(), this, false); ((Player*)player)->init(); } -- 2.39.2