Skip to content

Commit

Permalink
TIDAL: Fix Core-ppc32 build issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
projectgoav committed Jan 11, 2024
1 parent f0b1861 commit ee2e05f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenHome/Av/Tidal/Tidal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Tidal::Tidal(Environment& aEnv,
choices.push_back(ENABLED_YES);
iConfigEnable = new ConfigChoice(aConfigInitialiser, kConfigKeyEnabled, choices, ENABLED_YES);

iMaxSoundQuality = std::min(3u, aTidalConfig.maxSoundQualityOption);
iMaxSoundQuality = std::min(static_cast<TUint>(3), aTidalConfig.maxSoundQualityOption);
Log::Print("TIDAL: MaxSoundQuality limited to: %u\n", iMaxSoundQuality);

std::vector<TUint> qualities;
Expand Down

0 comments on commit ee2e05f

Please sign in to comment.