From cf440dfec31a68c5e5c662133b6f143d5c49a7ba Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 27 Nov 2008 14:05:30 +0000 Subject: [PATCH] Changed unsigned long to unsigned int to avoid 64bit portability issue. --- src/osgPlugins/bsp/VBSPReader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/bsp/VBSPReader.h b/src/osgPlugins/bsp/VBSPReader.h index df723c151..85183c31b 100644 --- a/src/osgPlugins/bsp/VBSPReader.h +++ b/src/osgPlugins/bsp/VBSPReader.h @@ -270,7 +270,7 @@ struct DisplaceInfo int lightmap_sample_pos_start; DisplaceNeighbor edge_neighbors[4]; DisplaceCornerNeighbor corner_neighbors[4]; - unsigned long allowed_verts[10]; + unsigned int allowed_verts[10]; };