Code:
menu_additem ( g_Menu, "\wMusic", "\r1", 0 );
The 3rd parameter is supposed to be info used to retrieve the button pressed with menu_item_getinfo. So if you want it to work it should be:
Code:
menu_additem( g_Menu, "\wMusic", "1" );
And then when you are doing a switch with the key, the third parameter is the things that you use to compare it to.
__________________