PAD: Cleanup unused variable warnings.

Codacy.
This commit is contained in:
lightningterror 2022-09-12 18:49:08 +02:00
parent 7641890910
commit 1fa7ae4f0d

View File

@ -523,10 +523,8 @@ namespace usb_pad
GetClientRect(GetDlgItem(hWnd, IDC_PICTURE), &rect);
MapWindowPoints(GetDlgItem(hWnd, IDC_PICTURE), hWnd, (POINT*)&rect, 2);
int px = rect.left;
int py = rect.top;
int pwidth = rect.right - rect.left;
int pheight = rect.bottom - rect.top;
const int pwidth = rect.right - rect.left;
const int pheight = rect.bottom - rect.top;
DWORD startTime, endTime;