mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
KenBuild, SW: Fix screencapture signature.
git-svn-id: https://svn.eduke32.com/eduke32@6416 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
72f7a6983a
commit
092631ca0d
2 changed files with 2 additions and 2 deletions
|
@ -4211,7 +4211,7 @@ void drawscreen(short snum, int dasmoothratio)
|
|||
if (keystatus[0x58]) //F12
|
||||
{
|
||||
keystatus[0x58] = 0;
|
||||
screencapture("captxxxx.tga",keystatus[0x2a]|keystatus[0x36],"EDuke32");
|
||||
screencapture("captxxxx.tga",keystatus[0x2a]|keystatus[0x36]);
|
||||
}
|
||||
if (keystatus[0x3e]) //F4 - screen re-size
|
||||
{
|
||||
|
|
|
@ -1678,7 +1678,7 @@ void ScreenCaptureKeys(void)
|
|||
{
|
||||
KEY_PRESSED(KEYSC_F12) = 0;
|
||||
PauseAction();
|
||||
screencapture("swcpxxxx.pcx", KEY_PRESSED(KEYSC_LSHIFT) | KEY_PRESSED(KEYSC_LSHIFT), "EDuke32");
|
||||
screencapture("swcpxxxx.tga", KEY_PRESSED(KEYSC_LSHIFT) | KEY_PRESSED(KEYSC_RSHIFT));
|
||||
ResumeAction();
|
||||
PutStringInfo(Player + myconnectindex, "Screen Captured");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue