Merge pull request #756 from l3iggs/patch-1

fix DECL_AUTOCONF_DEVICE macro
This commit is contained in:
Twinaphex 2014-06-15 09:11:41 +02:00
commit ba5a0f3463

View File

@ -20,6 +20,6 @@
#define DECL_BTN(btn, bind) "input_" #btn "_btn = " #bind "\n"
#define DECL_AXIS(axis, bind) "input_" #axis "_axis = " #bind "\n"
#define DECL_MENU(btn) "input_menu_toggle_btn = " #btn "\n"
#define DECL_AUTOCONF_DEVICE(device, driver, binds) "input_device = \"" #device "\" \ninput_driver = \"" #driver "\" \n" #binds
#define DECL_AUTOCONF_DEVICE(device, driver, binds) "input_device = \"" #device "\" \ninput_driver = \"" #driver "\" \n" binds
#endif