Mercurial > mplayer.hg
changeset 28419:d4fbeeaa1c76
Cosmetics: remove empty line, improve some messages.
author | reimar |
---|---|
date | Tue, 03 Feb 2009 10:21:17 +0000 |
parents | 2e77aca35aaf |
children | 606c3c97229c |
files | libvo/vo_direct3d.c |
diffstat | 1 files changed, 3 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vo_direct3d.c Tue Feb 03 10:17:14 2009 +0000 +++ b/libvo/vo_direct3d.c Tue Feb 03 10:21:17 2009 +0000 @@ -860,19 +860,17 @@ RECT rect = {0, 0, vo_dwidth, vo_dheight}; if (FAILED(IDirect3DDevice9_Present(priv->d3d_device, &rect, 0, 0, 0))) { mp_msg(MSGT_VO, MSGL_V, - "<vo_direct3d>Video adapter became uncooperative.\n"); - mp_msg(MSGT_VO, MSGL_ERR, "<vo_direct3d>Trying to reinitialize it...\n"); + "<vo_direct3d>Trying to reinitialize uncooperative video adapter.\n"); if (!reconfigure_d3d()) { - mp_msg(MSGT_VO, MSGL_V, "<vo_direct3d>Reinitialization Failed.\n"); + mp_msg(MSGT_VO, MSGL_V, "<vo_direct3d>Reinitialization failed.\n"); return; } if (FAILED(IDirect3DDevice9_Present(priv->d3d_device, &rect, 0, 0, 0))) { - mp_msg(MSGT_VO, MSGL_V, "<vo_direct3d>Reinitialization Failed.\n"); + mp_msg(MSGT_VO, MSGL_V, "<vo_direct3d>Reinitialization failed.\n"); return; } else mp_msg(MSGT_VO, MSGL_V, "<vo_direct3d>Video adapter reinitialized.\n"); - } }