diff --git a/source/kenbuild/src/game.cpp b/source/kenbuild/src/game.cpp index bec23d298..4eeaebe4c 100644 --- a/source/kenbuild/src/game.cpp +++ b/source/kenbuild/src/game.cpp @@ -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 { diff --git a/source/sw/src/draw.cpp b/source/sw/src/draw.cpp index 342df29de..eb2816b66 100644 --- a/source/sw/src/draw.cpp +++ b/source/sw/src/draw.cpp @@ -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"); }