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();
}