diff --git a/mythtv/libs/libmythtv/subtitlescreen.cpp b/mythtv/libs/libmythtv/subtitlescreen.cpp
index f3c8914..8deda80 100644
a
|
b
|
void SubtitleScreen::DisplayAVSubtitles(void) |
775 | 775 | (currentFrame->width < right)) |
776 | 776 | { |
777 | 777 | int sd_height = 576; |
778 | | if ((m_player->GetFrameRate() > 26.0f) && bottom <= 480) |
| 778 | if ((m_player->GetFrameRate() > 26.0f || |
| 779 | m_player->GetFrameRate() < 24.0f) && bottom <= 480) |
779 | 780 | sd_height = 480; |
780 | 781 | int height = ((currentFrame->height <= sd_height) && |
781 | 782 | (bottom <= sd_height)) ? sd_height : |