From 6a7b97b61712764bea9215eb088fcbf4dfa29b9c Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Tue, 29 Sep 2009 11:09:03 +0200 Subject: [PATCH] wined3d: Fix a typo. --- dlls/wined3d/wined3d_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wined3d/wined3d_private.h b/dlls/wined3d/wined3d_private.h index b431a1bffe..66d3c1ad2c 100644 --- a/dlls/wined3d/wined3d_private.h +++ b/dlls/wined3d/wined3d_private.h @@ -2293,7 +2293,7 @@ struct IWineD3DStateBlockImpl /* Light hashmap . Collisions are handled using standard wine double linked lists */ #define LIGHTMAP_SIZE 43 /* Use of a prime number recommended. Set to 1 for a linked list! */ #define LIGHTMAP_HASHFUNC(x) ((x) % LIGHTMAP_SIZE) /* Primitive and simple function */ - struct list lightMap[LIGHTMAP_SIZE]; /* Mashmap containing the lights */ + struct list lightMap[LIGHTMAP_SIZE]; /* Hash map containing the lights */ PLIGHTINFOEL *activeLights[MAX_ACTIVE_LIGHTS]; /* Map of opengl lights to d3d lights */ /* Clipping */