mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2025-01-12 14:58:06 +03:00
added MENU_KEY defines
This commit is contained in:
parent
0cb1aabb90
commit
db726a5ba2
@ -147,10 +147,21 @@
|
|||||||
#define PITCH_LOW 95 /* other values are possible - 0-255, where 255 is very high */
|
#define PITCH_LOW 95 /* other values are possible - 0-255, where 255 is very high */
|
||||||
#define PITCH_HIGH 120
|
#define PITCH_HIGH 120
|
||||||
|
|
||||||
|
|
||||||
/* Volume values */
|
/* Volume values */
|
||||||
#define VOL_NORM 1.0
|
#define VOL_NORM 1.0
|
||||||
|
|
||||||
|
/* Menu keys */
|
||||||
|
#define MENU_KEY_1 (1<<0)
|
||||||
|
#define MENU_KEY_2 (1<<1)
|
||||||
|
#define MENU_KEY_3 (1<<2)
|
||||||
|
#define MENU_KEY_4 (1<<3)
|
||||||
|
#define MENU_KEY_5 (1<<4)
|
||||||
|
#define MENU_KEY_6 (1<<5)
|
||||||
|
#define MENU_KEY_7 (1<<6)
|
||||||
|
#define MENU_KEY_8 (1<<7)
|
||||||
|
#define MENU_KEY_9 (1<<8)
|
||||||
|
#define MENU_KEY_0 (1<<9)
|
||||||
|
|
||||||
/* Destination types for client_print() */
|
/* Destination types for client_print() */
|
||||||
enum {
|
enum {
|
||||||
print_notify = 1,
|
print_notify = 1,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user