Remove unused variable

This commit is contained in:
Rene Kita
2021-09-02 11:53:15 +02:00
parent dad5cbe83b
commit 916104b7f2
7 changed files with 8 additions and 22 deletions

3
menu.c
View File

@@ -1100,7 +1100,7 @@ process_mMouse(int btn, int x, int y)
{
Menu *menu;
int mselect, i;
static int press_btn = MOUSE_BTN_RESET, press_x, press_y;
static int press_btn = MOUSE_BTN_RESET, press_y;
char c = ' ';
menu = CurrentMenu;
@@ -1169,7 +1169,6 @@ process_mMouse(int btn, int x, int y)
if (btn != MOUSE_BTN4_DOWN_RXVT || press_btn == MOUSE_BTN_RESET) {
press_btn = btn;
press_x = x;
press_y = y;
}
else {