| commit | 2239abb9f9baa9712dce6b41da88215d5918de2c | [log] [tgz] |
|---|---|---|
| author | Alexandre Julliard <julliard@winehq.org> | Sun Nov 05 02:05:07 2000 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Sun Nov 05 02:05:07 2000 +0000 |
| tree | cab2066f559d54dbdb0e7688b6d1a9cfadd5f4c8 | |
| parent | 47f5f0006a221d0d940b176d1a706a215ddb1c2c [diff] [blame] |
Allocate DC objects on the process heap, and removed WIN_DC_INFO structure (based on a patch by Ken Coleman).
diff --git a/graphics/metafiledrv/mapping.c b/graphics/metafiledrv/mapping.c index 497ca26..4d89005 100644 --- a/graphics/metafiledrv/mapping.c +++ b/graphics/metafiledrv/mapping.c
@@ -13,7 +13,7 @@ */ INT MFDRV_SetMapMode( DC *dc, INT mode ) { - INT prevMode = dc->w.MapMode; + INT prevMode = dc->MapMode; MFDRV_MetaParam1( dc, META_SETMAPMODE, mode ); return prevMode; }