diff --git a/reactos/subsystems/win32/win32k/objects/coord.c b/reactos/subsystems/win32/win32k/objects/coord.c index 7c664525c13..8b2880ba58f 100644 --- a/reactos/subsystems/win32/win32k/objects/coord.c +++ b/reactos/subsystems/win32/win32k/objects/coord.c @@ -202,12 +202,16 @@ NtGdiGetTransform( MatrixS2XForm(XForm, &dc->dclevel.mxWorldToDevice); break; + case GdiPageSpaceToDeviceSpace: + DPRINT1("Page space -> device space is unsupported!\n"); + break; + case GdiDeviceSpaceToWorldSpace: MatrixS2XForm(XForm, &dc->dclevel.mxDeviceToWorld); break; default: - DPRINT1("Unknown or unsupported transform %lu\n", iXform); + DPRINT1("Unknown transform %lu\n", iXform); Status = STATUS_INVALID_PARAMETER; break; }