C++ conversion: fixed compilation errors for quake3 project.

This commit is contained in:
Artem Kharytoniuk
2014-05-11 00:22:27 +03:00
parent e2e32bca15
commit ff834b8b59
39 changed files with 419 additions and 405 deletions

View File

@@ -58,7 +58,7 @@ winding_t *AllocWinding (int points)
c_peak_windings = c_active_windings;
s = sizeof(vec_t)*3*points + sizeof(int);
w = Z_Malloc (s);
w = (winding_t*) Z_Malloc (s);
Com_Memset (w, 0, s);
return w;
}