A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix red

Change-Id: Ibca5879553a87e77014f850308d9b54cc339d474

+9 -3
+1 -1
firmware/SOURCES
··· 1735 1735 1736 1736 #endif /* defined(SIMULATOR) */ 1737 1737 1738 - #if defined(HAVE_TOUCHPAD) 1738 + #if defined(HAVE_TOUCHPAD) && !defined(HAS_BUTTON_HOLD) 1739 1739 drivers/touchpad.c 1740 1740 #endif
+2
firmware/drivers/touchscreen.c
··· 172 172 return current_mode; 173 173 } 174 174 175 + #ifndef HAS_BUTTON_HOLD 175 176 void touchscreen_enable(bool en) 176 177 { 177 178 if(en != touch_enabled) ··· 185 186 { 186 187 return touch_enabled; 187 188 } 189 + #endif 188 190 189 191 #if ((CONFIG_PLATFORM & PLATFORM_ANDROID) == 0) 190 192 /* android has an API for this */
+2
firmware/export/touchscreen.h
··· 52 52 void touchscreen_reset_mapping(void); 53 53 int touchscreen_get_scroll_threshold(void); 54 54 void touchscreen_enable(bool en); 55 + #ifndef HAS_BUTTON_HOLD 55 56 void touchscreen_enable_device(bool en); 56 57 bool touchscreen_is_enabled(void); 58 + #endif 57 59 58 60 #endif /* __TOUCHSCREEN_INCLUDE_H_ */
+2
firmware/target/hosted/sdl/button-sdl.c
··· 393 393 #endif 394 394 default: 395 395 #ifdef HAVE_TOUCHSCREEN 396 + # ifndef HAS_BUTTON_HOLD 396 397 if(touchscreen_is_enabled()) 398 + # endif 397 399 new_btn = key_to_touch(key, mouse_coords); 398 400 if (!new_btn) 399 401 #endif
+2 -2
uisimulator/common/stubs.c
··· 382 382 } 383 383 #endif 384 384 385 - #if defined(HAVE_TOUCHSCREEN) && !defined HAS_BUTTON_HOLD 385 + #if defined(HAVE_TOUCHSCREEN) && !defined(HAS_BUTTON_HOLD) 386 386 void touchscreen_enable_device(bool en) 387 387 { 388 388 (void)en; 389 389 } 390 390 #endif 391 391 392 - #if defined(HAVE_TOUCHPAD) && !defined HAS_BUTTON_HOLD 392 + #if defined(HAVE_TOUCHPAD) && !defined(HAS_BUTTON_HOLD) 393 393 void touchpad_enable_device(bool en) 394 394 { 395 395 (void)en;