diff options
author | Twinaphex | 2016-03-01 23:11:41 +0100 |
---|---|---|
committer | Twinaphex | 2016-03-01 23:11:41 +0100 |
commit | 966a06cd644d812dc75c9b91a58168fef6ab6db8 (patch) | |
tree | 3e022848a057b6a395fce5713f7bc1fdcbd600d4 /frontend | |
parent | bb22137d8a5b660777896b1c470d5fc906201b37 (diff) | |
parent | ffb459986519af6fc5f6d261873bcedf451ce4f9 (diff) | |
download | pcsx_rearmed-966a06cd644d812dc75c9b91a58168fef6ab6db8.tar.gz pcsx_rearmed-966a06cd644d812dc75c9b91a58168fef6ab6db8.tar.bz2 pcsx_rearmed-966a06cd644d812dc75c9b91a58168fef6ab6db8.zip |
Merge pull request #29 from dankcushions/master
Fix undefined compile error
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/plugin_lib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/plugin_lib.c b/frontend/plugin_lib.c index ab4d415..237a5eb 100644 --- a/frontend/plugin_lib.c +++ b/frontend/plugin_lib.c @@ -38,6 +38,7 @@ int in_type1, in_type2; int in_a1[2] = { 127, 127 }, in_a2[2] = { 127, 127 }; +int in_a3[2] = { 127, 127 }, in_a4[2] = { 127, 127 }; int in_adev[2] = { -1, -1 }, in_adev_axis[2][2] = {{ 0, 1 }, { 0, 1 }}; int in_adev_is_nublike[2]; int in_keystate, in_state_gun; |