remove screenshot hotkey

This commit is contained in:
FunkyFr3sh 2018-11-01 20:14:33 +01:00
parent d56240e178
commit 7b55df3ed7
3 changed files with 0 additions and 15 deletions

View file

@ -1023,15 +1023,6 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return 0;
}
}
if(wParam == VK_CONTROL || wParam == ddraw->screenshotKey)
{
if(GetAsyncKeyState(VK_CONTROL) & 0x8000 && GetAsyncKeyState(ddraw->screenshotKey) & 0x8000)
{
screenshot(ddraw->primary);
return 0;
}
}
break;
case WM_KEYUP: