X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=vg_config.h;h=92fd2e855c88dc9357acef1552859c0d79d138a1;hb=89032d64e2867adb66e4598a0c66d3e853a22bb0;hp=fc153edb968847b1607b55b40dba2eaf9de3aa3e;hpb=a1a05787ada52089f30c533fb26b745554c07512;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/vg_config.h b/vg_config.h index fc153ed..92fd2e8 100644 --- a/vg_config.h +++ b/vg_config.h @@ -1,5 +1,6 @@ // Copyright (C) 2021 Harry Godden (hgn) - All Rights Reserved #define VG_CONFIG +#include "vg/vg.h" static struct button_binding vg_button_binds[] = { @@ -13,7 +14,14 @@ static struct button_binding vg_button_binds[] = { .name = "down", .bind = GLFW_KEY_F }, { .name = "yawl", .bind = GLFW_KEY_Q }, { .name = "yawr", .bind = GLFW_KEY_E }, - { .name = "push", .controller = GLFW_GAMEPAD_BUTTON_B } + { .name = "push", .bind = GLFW_KEY_T } +}; + +static struct button_binding vg_controller_binds[] = +{ + { "push", GLFW_GAMEPAD_BUTTON_A }, + { "break", GLFW_GAMEPAD_BUTTON_B }, + { "switchmode", GLFW_GAMEPAD_BUTTON_Y } }; static struct axis_binding vg_axis_binds[] =