gdiplus: Limit fixme output.
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index f024d7c..a29d3a1 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -1200,20 +1200,26 @@
GpStatus WINGDIPAPI GdipRestoreGraphics(GpGraphics *graphics, GraphicsState state)
{
+ static int calls;
+
if(!graphics)
return InvalidParameter;
- FIXME("graphics state not implemented\n");
+ if(!(calls++))
+ FIXME("graphics state not implemented\n");
return NotImplemented;
}
GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state)
{
+ static int calls;
+
if(!graphics || !state)
return InvalidParameter;
- FIXME("graphics state not implemented\n");
+ if(!(calls++))
+ FIXME("graphics state not implemented\n");
return NotImplemented;
}