Fix several return values

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28451 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-02-03 10:14:44 +00:00
parent a019ba3643
commit ad8c8f6f28
1 changed files with 3 additions and 3 deletions

View File

@ -437,7 +437,7 @@ static int configure_d3d(void)
if (FAILED(IDirect3DDevice9_SetViewport(priv->d3d_device,
&vp))) {
mp_msg(MSGT_VO, MSGL_ERR, "<vo_direct3d>Unable to set the viewport\n");
return VO_ERROR;
return 0;
}
calc_fs_rect();
@ -468,7 +468,7 @@ static int reconfigure_d3d(void)
priv->d3d_handle = Direct3DCreate9(D3D_SDK_VERSION);
if (!priv->d3d_handle) {
mp_msg(MSGT_VO, MSGL_ERR, "<vo_direct3d>Unable to initialize Direct3D\n");
return -1;
return 0;
}
/* Configure Direct3D */
@ -519,7 +519,7 @@ static int resize_d3d(void)
if (FAILED(IDirect3DDevice9_SetViewport(priv->d3d_device,
&vp))) {
mp_msg(MSGT_VO, MSGL_ERR, "<vo_direct3d>Unable to set the viewport\n");
return VO_ERROR;
return 0;
}
calc_fs_rect();