X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=frontend%2Fpl_gun_ts.c;h=6e7fa9401950e9dc98d1dc1ab6e80331e60a2bb3;hb=fb640dd9d9affafea31495762980117323636258;hp=6c05b7c3f3b31d6ff0b3923a8dc81ed84d5c83ef;hpb=0c2126b9446fea1eb2a4e4c84fcb5ac1f364e81c;p=pcsx_rearmed.git diff --git a/frontend/pl_gun_ts.c b/frontend/pl_gun_ts.c index 6c05b7c3..6e7fa940 100644 --- a/frontend/pl_gun_ts.c +++ b/frontend/pl_gun_ts.c @@ -54,7 +54,7 @@ int pl_gun_ts_update_raw(struct tsdev *ts, int *x, int *y, int *p) gun_y = (sy - ts_offs_y) * ts_multiplier_y >> 10; limit(gun_x, 0, 1023); limit(gun_y, 0, 1023); - if (sp && !(g_opts & OPT_TSGUN_NOTRIGGER)) + if (sp) gun_in |= 1; else gun_in &= ~1; @@ -78,7 +78,7 @@ void pl_gun_ts_update(struct tsdev *ts, int *x, int *y, int *in) *x = gun_x; *y = gun_y; - *in = gun_in | in_state_gun; + *in = gun_in; } void pl_set_gun_rect(int x, int y, int w, int h)