Added missing constant mapping for new PlaybackPrepared state.

This commit is contained in:
casey langen 2018-02-18 02:20:24 +00:00
parent 3dd4bbbad7
commit d0e3e35d94

View File

@ -216,6 +216,7 @@ namespace broadcast {
static auto PLAYBACK_STATE_TO_STRING = makeBimap<musik::core::sdk::PlaybackState, std::string>({
{ musik::core::sdk::PlaybackStopped, "stopped" },
{ musik::core::sdk::PlaybackPlaying, "playing" },
{ musik::core::sdk::PlaybackPrepared, "paused" },
{ musik::core::sdk::PlaybackPaused, "paused" }
});
@ -236,4 +237,4 @@ static auto TRANSPORT_TYPE_TO_STRING = makeBimap<musik::core::sdk::TransportType
{ musik::core::sdk::TransportType::Crossfade, "crossfade" },
});
static const int ApiVersion = 14;
static const int ApiVersion = 14;