Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Subtitles/RTS.cpp')
-rw-r--r--src/Subtitles/RTS.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Subtitles/RTS.cpp b/src/Subtitles/RTS.cpp
index bb88824d4..94accdbd8 100644
--- a/src/Subtitles/RTS.cpp
+++ b/src/Subtitles/RTS.cpp
@@ -52,7 +52,7 @@ CMyFont::CMyFont(STSStyle& style)
if (!CreateFontIndirect(&lf)) {
_tcscpy_s(lf.lfFaceName, _T("Arial"));
- CreateFontIndirect(&lf);
+ VERIFY(CreateFontIndirect(&lf));
}
HFONT hOldFont = SelectFont(g_hDC, *this);