Reverse oplus-alert-slider order

Change-Id: Ic968fa7a8822e133a6f56d28ef108a43edd9639c
This commit is contained in:
Andy CrossGate Yan 2021-12-09 13:34:32 +00:00
parent 1e74ebda8d
commit fca972de6f

View File

@ -44,11 +44,11 @@ int main() {
}
printf("State %d\n", read_tristate());
if(state == 1) {
system("service call audio 32 i32 2 s16 android");
system("service call audio 32 i32 0 s16 android");
} else if(state == 2) {
system("service call audio 32 i32 1 s16 android");
} else if(state == 3) {
system("service call audio 32 i32 0 s16 android");
system("service call audio 32 i32 2 s16 android");
}
}
}