Commit 9da6cc90 authored by Evan Stade's avatar Evan Stade Committed by Alexandre Julliard

gdiplus: Changed GdipGetImageType.

parent 359a21d6
......@@ -103,8 +103,7 @@ GpStatus WINGDIPAPI GdipGetImageType(GpImage *image, ImageType *type)
if(!image || !type)
return InvalidParameter;
/* FIXME: get correct image type. */
*type = ImageTypeUnknown;
*type = image->type;
return Ok;
}
......
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