From fca972de6fe88e860d83c4bc258a3fd33e998960 Mon Sep 17 00:00:00 2001 From: Andy CrossGate Yan Date: Thu, 9 Dec 2021 13:34:32 +0000 Subject: [PATCH] Reverse oplus-alert-slider order Change-Id: Ic968fa7a8822e133a6f56d28ef108a43edd9639c --- cmds/oplus-alert-slider.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmds/oplus-alert-slider.cpp b/cmds/oplus-alert-slider.cpp index 8e1f7ab..2ec202e 100644 --- a/cmds/oplus-alert-slider.cpp +++ b/cmds/oplus-alert-slider.cpp @@ -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"); } } }