Commit 3439f286 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

gdiplus: GdipCreateFontFromLogfont also returns NotTrueTypeFont for a not present font.

parent eeb52474
......@@ -1970,7 +1970,7 @@ static void test_GdipDrawString(void)
expect(Ok, status);
status = GdipCreateFontFromLogfontA(hdc, &logfont, &fnt);
if (status == FileNotFound)
if (status == NotTrueTypeFont || status == FileNotFound)
{
skip("Arial not installed.\n");
return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment