Removed a couple of unused fields in the DC structure.
diff --git a/objects/bitmap.c b/objects/bitmap.c
index d7b5c8d..8858c16 100644
--- a/objects/bitmap.c
+++ b/objects/bitmap.c
@@ -448,11 +448,7 @@
if (handle)
{
- dc->hBitmap = handle;
- dc->totalExtent.left = 0;
- dc->totalExtent.top = 0;
- dc->totalExtent.right = bitmap->bitmap.bmWidth;
- dc->totalExtent.bottom = bitmap->bitmap.bmHeight;
+ dc->hBitmap = handle;
dc->flags &= ~DC_DIRTY;
SetRectRgn( dc->hVisRgn, 0, 0, bitmap->bitmap.bmWidth, bitmap->bitmap.bmHeight);
DC_InitDC( dc );