Modules no longer need to have the correct extension (requested by UgLyPuNk)

This commit is contained in:
David Anderson
2004-09-12 03:48:21 +00:00
parent ee28532c53
commit 1082ef31c7
8 changed files with 124 additions and 39 deletions

View File

@@ -71,7 +71,7 @@ public:
void append(const char *t)
{
Grow(cSize + strlen(t));
Grow(cSize + strlen(t) + 1);
strcat(v, t);
cSize = strlen(v);
}