Skip to content

Commit

Permalink
[rbp] Add ntsc version of 48Hz mode
Browse files Browse the repository at this point in the history
  • Loading branch information
popcornmix committed Aug 9, 2015
1 parent 8564bac commit d117bf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/windowing/egl/EGLNativeTypeRaspberryPI.cpp
Expand Up @@ -683,7 +683,7 @@ void CEGLNativeTypeRaspberryPI::GetSupportedModes(HDMI_RES_GROUP_T group, std::v
CLog::Log(LOGDEBUG, "EGL mode %d: %s (%.2f) %s%s:%x\n", i, res.strMode.c_str(), res.fPixelRatio,
tv->native ? "N" : "", tv->scan_mode ? "I" : "", tv->code);

if (tv->frame_rate == 24 || tv->frame_rate == 30 || tv->frame_rate == 60)
if (tv->frame_rate == 24 || tv->frame_rate == 30 || tv->frame_rate == 48 || tv->frame_rate == 60)
{
RESOLUTION_INFO res2 = res;
res2.fRefreshRate = (float)tv->frame_rate * (1000.0f/1001.0f);
Expand Down

0 comments on commit d117bf9

Please sign in to comment.