From 0365d7a93b8b27d9deda435c1f39a011debc1025 Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Tue, 29 Oct 2013 10:28:06 +0100 Subject: [PATCH] d3drm: Get rid of the color_rgb typedef. --- dlls/d3drm/material.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dlls/d3drm/material.c b/dlls/d3drm/material.c index 216d9132a69..8eb40b5a9e9 100644 --- a/dlls/d3drm/material.c +++ b/dlls/d3drm/material.c @@ -29,21 +29,21 @@ WINE_DEFAULT_DEBUG_CHANNEL(d3drm); -typedef struct +struct color_rgb { D3DVALUE r; D3DVALUE g; D3DVALUE b; -} color_rgb; +}; struct d3drm_material { IDirect3DRMMaterial2 IDirect3DRMMaterial2_iface; LONG ref; - color_rgb emissive; - color_rgb specular; + struct color_rgb emissive; + struct color_rgb specular; D3DVALUE power; - color_rgb ambient; + struct color_rgb ambient; }; static inline struct d3drm_material *impl_from_IDirect3DRMMaterial2(IDirect3DRMMaterial2 *iface)