Quote:
char *show_menu_1 = "[HiveMinD menu]\n [1] Add a bot \n[2] Add 8 bots \n[3] Add 16 bots \n[4] Cancel\n";
|
Add brackets around it
char *show_menu_1 =
{"[HiveMinD menu]\n [1] Add a bot \n[2] Add 8 bots \n[3] Add 16 bots \n[4] Cancel\n"
};
Atleast that works for me.