mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
Fix swapped EDUKE32_STANDALONE ifdefs for screenshot filenames
git-svn-id: https://svn.eduke32.com/eduke32@6268 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
8dc6fb6cfd
commit
1069db7e1e
2 changed files with 2 additions and 2 deletions
|
@ -206,7 +206,7 @@ void G_HandleSpecialKeys(void)
|
||||||
|
|
||||||
KB_ClearKeyDown(sc_F12);
|
KB_ClearKeyDown(sc_F12);
|
||||||
screencapture(
|
screencapture(
|
||||||
#ifdef EDUKE32_STANDALONE
|
#ifndef EDUKE32_STANDALONE
|
||||||
"duke0000.tga"
|
"duke0000.tga"
|
||||||
#else
|
#else
|
||||||
"scrn0000.tga"
|
"scrn0000.tga"
|
||||||
|
|
|
@ -1213,7 +1213,7 @@ static int32_t osdcmd_screenshot(const osdfuncparm_t *parm)
|
||||||
UNREFERENCED_PARAMETER(parm);
|
UNREFERENCED_PARAMETER(parm);
|
||||||
// KB_ClearKeysDown();
|
// KB_ClearKeysDown();
|
||||||
screencapture(
|
screencapture(
|
||||||
#ifdef EDUKE32_STANDALONE
|
#ifndef EDUKE32_STANDALONE
|
||||||
"duke0000.tga"
|
"duke0000.tga"
|
||||||
#else
|
#else
|
||||||
"scrn0000.tga"
|
"scrn0000.tga"
|
||||||
|
|
Loading…
Reference in a new issue