mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 20:20:43 +00:00
full path reporting when writing screenshots
This commit is contained in:
parent
31b867a08e
commit
b62f3c98d9
3 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue