Nick WARNE: add file name to screenshot info line

This commit is contained in:
mfranz 2007-06-14 20:20:18 +00:00
parent 0096c1bb02
commit 80bcaa49e6

View File

@ -71,8 +71,8 @@ bool sg_glWritePPMFile(const char *filename, GLubyte *buffer, int win_width, int
fclose(fp);
free(ibuffer);
printf("wrote file (%d x %d pixels, %d bytes)\n",
win_width, win_height, RGB3*win_width*win_height);
printf("wrote file '%s' (%d x %d pixels, %d bytes)\n",
filename, win_width, win_height, RGB3*win_width*win_height);
return true;
}