full path reporting when writing screenshots

This commit is contained in:
Bill Currie 2004-04-14 03:31:08 +00:00
parent 31b867a08e
commit b62f3c98d9
3 changed files with 3 additions and 3 deletions

View file

@ -149,7 +149,7 @@ SCR_ScreenShot_f (void)
GL_UNSIGNED_BYTE, buffer);
WriteTGAfile (pcxname->str, buffer, glwidth, glheight);
free (buffer);
Con_Printf ("Wrote %s\n", pcxname->str);
Con_Printf ("Wrote %s/%s\n", qfs_userpath, pcxname->str);
}
dstring_delete (pcxname);
}

View file

@ -178,7 +178,7 @@ SCR_ScreenShot_f (void)
// time
D_DisableBackBufferAccess ();
Con_Printf ("Wrote %s\n", pcxname->str);
Con_Printf ("Wrote %s/%s\n", qfs_userpath, pcxname->str);
}
dstring_delete (pcxname);
}

View file

@ -198,7 +198,7 @@ SCR_ScreenShot_f (void)
if (pcx) {
QFS_WriteFile (pcxname->str, pcx, pcx_len);
Con_Printf ("Wrote %s\n", pcxname->str);
Con_Printf ("Wrote %s/%s\n", qfs_userpath, pcxname->str);
}
}
dstring_delete (pcxname);