libeplayer3: minor optimization

This commit is contained in:
martii
2014-04-13 19:29:07 +02:00
parent 958b5f6a2c
commit 51b2ace4e4

View File

@@ -88,8 +88,6 @@ bool Player::Open(const char *Url, bool _noprobe)
bool Player::Close()
{
bool ret = true;
isPaused = false;
isPlaying = false;
isForwarding = false;
@@ -98,7 +96,7 @@ bool Player::Close()
Speed = 0;
url.clear();
return ret;
return true;
}
bool Player::Play()