mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Don't double-draw the bindings menus.
This commit is contained in:
parent
fd6b5edb73
commit
d9288c0837
1 changed files with 3 additions and 3 deletions
|
@ -314,7 +314,7 @@ DRAW_basic_control_binding =
|
|||
|
||||
opt_cursor (x + 12, y + (Menu_GetIndex () * 10) + cursor_pad);
|
||||
|
||||
return 1;
|
||||
return 0;
|
||||
};
|
||||
|
||||
/*
|
||||
|
@ -390,7 +390,7 @@ DRAW_misc_control_binding =
|
|||
}
|
||||
|
||||
opt_cursor (x + 12, y + (Menu_GetIndex() * 10) + cursor_pad);
|
||||
return 1;
|
||||
return 0;
|
||||
};
|
||||
|
||||
/*
|
||||
|
@ -467,7 +467,7 @@ DRAW_weapon_control_binding =
|
|||
|
||||
opt_cursor (x + 12, y + (Menu_GetIndex () * 10) + cursor_pad);
|
||||
|
||||
return 1;
|
||||
return 0;
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue