1
0
mirror of synced 2024-09-23 19:08:26 +02: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
fire_touches(&feet[0].event, 1);
continue;
}
else {
@ -338,7 +337,7 @@ void startInputSpam() {
break;
}
}
if (true) // check if foot1 touch
if (feet[1].touching) // check if foot1 touch
{
// check previous event
switch (feet[1].event.type) {
@ -357,7 +356,6 @@ void startInputSpam() {
}
// send event
fire_touches(&feet[1].event, 1);
continue;
}
else {
switch (feet[1].event.type) {
@ -372,9 +370,8 @@ void startInputSpam() {
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
switch (feet[2].event.type) {
case DRS_UP:
@ -391,7 +388,6 @@ void startInputSpam() {
}
// send event
fire_touches(&feet[2].event, 1);
continue;
}
else {
switch (feet[2].event.type) {