Updated dead links in comments with archived versions

Fixes #623
This commit is contained in:
Graham Pentheny
2023-05-21 01:37:27 -04:00
parent 9432fd6381
commit ee2d4ef6e6
3 changed files with 3 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ static bool buildMeshAdjacency(unsigned short* polys, const int npolys,
const int nverts, const int vertsPerPoly)
{
// Based on code by Eric Lengyel from:
// http://www.terathon.com/code/edges.php
// https://web.archive.org/web/20080704083314/http://www.terathon.com/code/edges.php
int maxEdgeCount = npolys*vertsPerPoly;
unsigned short* firstEdge = (unsigned short*)rcAlloc(sizeof(unsigned short)*(nverts + maxEdgeCount), RC_ALLOC_TEMP);