diff options
author | 2018-12-14 13:39:38 +0100 | |
---|---|---|
committer | 2018-12-14 13:39:52 +0100 | |
commit | 496be2f305943411ed88d34a8c75f82013b4291f (patch) | |
tree | 75186b9025b3fa43471888afea80f2b023025692 | |
parent | 5422539a0564b410e9450469fb8d37aed24dcb5b (diff) |
dwrite: noticed an error msg with missing \n (nw)
-rw-r--r-- | src/osd/modules/font/font_dwrite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/font/font_dwrite.cpp b/src/osd/modules/font/font_dwrite.cpp index 74e15af9265..f60ef7580c4 100644 --- a/src/osd/modules/font/font_dwrite.cpp +++ b/src/osd/modules/font/font_dwrite.cpp @@ -624,7 +624,7 @@ private: HR_RETHR(fonts->FindFamilyName(familyName.c_str(), &family_index, &exists)); if (!exists) { - osd_printf_error("Font with family name %S does not exist", familyName.c_str()); + osd_printf_error("Font with family name %S does not exist.\n", familyName.c_str()); return E_FAIL; } |