Clean up after myself in the Z_* purge..

This commit is contained in:
Zephaniah E. Hull 2000-06-29 23:30:21 +00:00
parent def35745d7
commit 750457b368
8 changed files with 17 additions and 16 deletions

View file

@ -869,7 +869,7 @@ void SCR_RSShot_f (void)
fracw = (float)vid.width / (float)w;
frach = (float)vid.height / (float)h;
newbuf = malloc(w*h);
newbuf = calloc(1, w*h);
for (y = 0; y < h; y++) {
dest = newbuf + (w * y);