Skip to content

Commit

Permalink
Fix switching to monoscopic mode while playing (OSD->3D->Watch as 2D)
Browse files Browse the repository at this point in the history
  • Loading branch information
anaconda authored and popcornmix committed Jan 6, 2015
1 parent 3688c6b commit 8787e2a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion xbmc/guilib/GraphicContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,10 @@ void CGraphicContext::SetVideoResolutionInternal(RESOLUTION res, bool forceUpdat
|| (info_last.dwFlags & D3DPRESENTFLAG_MODE3DTB) != 0)
{
CLog::Log(LOGDEBUG, "CGraphicContext::%s info_last either SBS or TB", __FUNCTION__);
stereo_mode = RENDER_STEREO_MODE_OFF;
if (m_nextStereoMode == RENDER_STEREO_MODE_MONO)
stereo_mode = RENDER_STEREO_MODE_MONO;
else
stereo_mode = RENDER_STEREO_MODE_OFF;
}

CLog::Log(LOGDEBUG, "CGraphicContext::%s m_stereoMode=%i m_nextStereoMode=%i -> stereo_mode=%i",
Expand Down

0 comments on commit 8787e2a

Please sign in to comment.