Skip to content

Commit

Permalink
fixed, g_renderManager.Configure in CAMLPlayer needs another param
Browse files Browse the repository at this point in the history
  • Loading branch information
davilla committed Aug 24, 2012
1 parent 2a4e36a commit 31ff5b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/amlplayer/AMLPlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1463,7 +1463,7 @@ void CAMLPlayer::Process()
CLog::Log(LOGDEBUG,"%s - change configuration. %dx%d. framerate: %4.2f. format: %s",
__FUNCTION__, width, height, fFrameRate, formatstr.c_str());
g_renderManager.IsConfigured();
if (!g_renderManager.Configure(width, height, width, height, fFrameRate, flags, RENDER_FMT_BYPASS, 0))
if (!g_renderManager.Configure(width, height, width, height, fFrameRate, flags, RENDER_FMT_BYPASS, 0, 0))
{
CLog::Log(LOGERROR, "%s - failed to configure renderer", __FUNCTION__);
}
Expand Down

0 comments on commit 31ff5b9

Please sign in to comment.