1
0
mirror of synced 2024-11-24 06:50:14 +01:00

both feet worked now

This commit is contained in:
doomertheboomer 2023-07-27 23:48:41 +07:00
parent af489e0792
commit ab6e468207

View File

@ -322,7 +322,6 @@ void startInputSpam() {
} }
// send event // send event
fire_touches(&feet[0].event, 1); fire_touches(&feet[0].event, 1);
continue;
} }
else { else {
@ -338,7 +337,7 @@ void startInputSpam() {
break; break;
} }
} }
if (true) // check if foot1 touch if (feet[1].touching) // check if foot1 touch
{ {
// check previous event // check previous event
switch (feet[1].event.type) { switch (feet[1].event.type) {
@ -357,7 +356,6 @@ void startInputSpam() {
} }
// send event // send event
fire_touches(&feet[1].event, 1); fire_touches(&feet[1].event, 1);
continue;
} }
else { else {
switch (feet[1].event.type) { switch (feet[1].event.type) {
@ -372,9 +370,8 @@ void startInputSpam() {
break; break;
} }
} }
if (true) // check if foot2 touch if (feet[2].touching) // check if foot2 touch
{ {
puts("hello world??? why is this not executing");
// check previous event // check previous event
switch (feet[2].event.type) { switch (feet[2].event.type) {
case DRS_UP: case DRS_UP:
@ -391,7 +388,6 @@ void startInputSpam() {
} }
// send event // send event
fire_touches(&feet[2].event, 1); fire_touches(&feet[2].event, 1);
continue;
} }
else { else {
switch (feet[2].event.type) { switch (feet[2].event.type) {