summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Goedeken <richard@fascinationsoftware.com>2022-12-02 11:16:08 -0800
committerAidan MacDonald <amachronic@protonmail.com>2022-12-04 10:16:14 -0500
commitd06cf3ac2db402a6d36d4491d1bc1abd905c7703 (patch)
treed37c6b89e0367746c458b1dfcbc456e2a2ebc841
parentbbe39420395618944a7174bc3d9be1bc67b257a3 (diff)
downloadrockbox-d06cf3ac2db402a6d36d4491d1bc1abd905c7703.tar.gz
rockbox-d06cf3ac2db402a6d36d4491d1bc1abd905c7703.zip
bugfix: for ErosQ/SurfansF20, reset poweroff timer when scroll wheel is moved so that we dont blank the screen while the user is scrolling through a list
Change-Id: Ifdce301e2d75e3f6f54fba5b3eef15b2141cb954
-rw-r--r--firmware/target/mips/ingenic_x1000/erosqnative/button-erosqnative.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/target/mips/ingenic_x1000/erosqnative/button-erosqnative.c b/firmware/target/mips/ingenic_x1000/erosqnative/button-erosqnative.c
index 1583db175a..3fc4f11108 100644
--- a/firmware/target/mips/ingenic_x1000/erosqnative/button-erosqnative.c
+++ b/firmware/target/mips/ingenic_x1000/erosqnative/button-erosqnative.c
@@ -233,6 +233,7 @@ int button_read_device(void)
233 * Rockbox treats these buttons differently. */ 233 * Rockbox treats these buttons differently. */
234 queue_post(&button_queue, BUTTON_SCROLL_FWD, 0); 234 queue_post(&button_queue, BUTTON_SCROLL_FWD, 0);
235 enc_position = 0; 235 enc_position = 0;
236 reset_poweroff_timer();
236 } 237 }
237 else if (enc_position < -1) 238 else if (enc_position < -1)
238 { 239 {
@@ -240,6 +241,7 @@ int button_read_device(void)
240 * Rockbox treats these buttons differently. */ 241 * Rockbox treats these buttons differently. */
241 queue_post(&button_queue, BUTTON_SCROLL_BACK, 0); 242 queue_post(&button_queue, BUTTON_SCROLL_BACK, 0);
242 enc_position = 0; 243 enc_position = 0;
244 reset_poweroff_timer();
243 } 245 }
244 246
245 return r; 247 return r;