- Updated win32 project

- Fixed VC compile errors
This commit is contained in:
Mikko Mononen
2011-03-25 10:13:27 +00:00
parent 1de5e2f119
commit 76444aa747
10 changed files with 63 additions and 43 deletions

View File

@@ -326,7 +326,7 @@ void duDebugDrawCompactHeightfieldDistance(duDebugDraw* dd, const rcCompactHeigh
dd->end();
}
static void drawLayerPortals(duDebugDraw* dd, const rcHeightfieldLayer* layer, const unsigned int color)
static void drawLayerPortals(duDebugDraw* dd, const rcHeightfieldLayer* layer)
{
const float cs = layer->cs;
const float ch = layer->ch;
@@ -418,7 +418,7 @@ void duDebugDrawHeightfieldLayer(duDebugDraw* dd, const struct rcHeightfieldLaye
dd->end();
// Portals
drawLayerPortals(dd, &layer, color);
drawLayerPortals(dd, &layer);
}
void duDebugDrawHeightfieldLayers(duDebugDraw* dd, const struct rcHeightfieldLayerSet& lset)