mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-02 22:11:22 +00:00
gl_screen.c (SCR_ScreenShot_f): Changed screenshot name to spasmXXXX.tga
as suggested by Piotr Szymaniak. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@94 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
e0cb1c601d
commit
6feadde1c2
1 changed files with 1 additions and 1 deletions
|
@ -740,7 +740,7 @@ void SCR_ScreenShot_f (void)
|
|||
// find a file name to save it to
|
||||
for (i=0; i<10000; i++)
|
||||
{
|
||||
sprintf (tganame, "fitz%04i.tga", i);
|
||||
sprintf (tganame, "spasm%04i.tga", i); // "fitz%04i.tga"
|
||||
sprintf (checkname, "%s/%s", com_gamedir, tganame);
|
||||
if (Sys_FileTime(checkname) == -1)
|
||||
break; // file doesn't exist
|
||||
|
|
Loading…
Reference in a new issue