Commit e1a79d4d authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

ddraw: Convert BOOL flags to bitfields in ddraw_surface.

parent ccce5f76
...@@ -195,8 +195,8 @@ struct ddraw_surface ...@@ -195,8 +195,8 @@ struct ddraw_surface
/* You can't traverse the tree upwards. Only a flag for Surface::Release because it's needed there, /* You can't traverse the tree upwards. Only a flag for Surface::Release because it's needed there,
* but no pointer to prevent temptations to traverse it in the wrong direction. * but no pointer to prevent temptations to traverse it in the wrong direction.
*/ */
BOOL is_complex_root; unsigned int is_complex_root : 1;
BOOL is_lost; unsigned int is_lost : 1;
/* Surface description, for GetAttachedSurface */ /* Surface description, for GetAttachedSurface */
DDSURFACEDESC2 surface_desc; DDSURFACEDESC2 surface_desc;
......
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