[vlc-commits] direct3d9: fix missing verb in comments
Steve Lhomme
git at videolan.org
Wed Feb 12 16:44:44 CET 2020
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Feb 12 10:12:26 2020 +0100| [223eda5f14ddd490fa38d0fb5ccfc294489bce3f] | committer: Steve Lhomme
direct3d9: fix missing verb in comments
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=223eda5f14ddd490fa38d0fb5ccfc294489bce3f
---
modules/video_chroma/d3d9_fmt.c | 2 +-
modules/video_output/win32/direct3d9.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/video_chroma/d3d9_fmt.c b/modules/video_chroma/d3d9_fmt.c
index 36a4635f6e..421d1a75f6 100644
--- a/modules/video_chroma/d3d9_fmt.c
+++ b/modules/video_chroma/d3d9_fmt.c
@@ -87,7 +87,7 @@ HRESULT D3D9_CreateDevice(vlc_object_t *o, d3d9_handle_t *hd3d, int AdapterToUse
D3DPRESENT_PARAMETERS d3dpp;
if (D3D9_FillPresentationParameters(hd3d, out, &d3dpp))
{
- msg_Err(o, "Could not presentation parameters");
+ msg_Err(o, "Could not get presentation parameters");
return E_INVALIDARG;
}
diff --git a/modules/video_output/win32/direct3d9.c b/modules/video_output/win32/direct3d9.c
index 60be882aa5..6f5d27c7c0 100644
--- a/modules/video_output/win32/direct3d9.c
+++ b/modules/video_output/win32/direct3d9.c
@@ -850,7 +850,7 @@ static int Direct3D9Reset(vout_display_t *vd, const video_format_t *fmtp)
D3DPRESENT_PARAMETERS d3dpp;
if (D3D9_FillPresentationParameters(&sys->d3d9_device->hd3d, p_d3d9_dev, &d3dpp))
{
- msg_Err(vd, "Could not presentation parameters to reset device");
+ msg_Err(vd, "Could not get presentation parameters to reset device");
return VLC_EGENERIC;
}
More information about the vlc-commits
mailing list