diff options
author | Aidan MacDonald <amachronic@protonmail.com> | 2022-10-02 20:44:27 +0100 |
---|---|---|
committer | Aidan MacDonald <amachronic@protonmail.com> | 2022-10-18 12:56:28 +0100 |
commit | 13da1ba785b1f06bacae06da422ac2cf2ea5eb76 (patch) | |
tree | 0f6b10e05ae7edbf2220651217779e699802be21 /apps/gui/wps.c | |
parent | 33a47e4a494764802f63b4b456dbd113df250b37 (diff) | |
download | rockbox-13da1ba785b1f06bacae06da422ac2cf2ea5eb76.tar.gz rockbox-13da1ba785b1f06bacae06da422ac2cf2ea5eb76.zip |
Remove is_fading from the global WPS state
Turns out it was never assigned and always false.
Change-Id: I8cd9118682e7a0785c262d4c0594f8f51412c18b
Diffstat (limited to 'apps/gui/wps.c')
-rw-r--r-- | apps/gui/wps.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c index b1700459cc..53ece62e9c 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c | |||
@@ -1070,11 +1070,3 @@ static void wps_state_init(void) | |||
1070 | add_event(PLAYBACK_EVENT_TRACK_SKIP, track_info_callback); | 1070 | add_event(PLAYBACK_EVENT_TRACK_SKIP, track_info_callback); |
1071 | #endif | 1071 | #endif |
1072 | } | 1072 | } |
1073 | |||
1074 | |||
1075 | #ifdef IPOD_ACCESSORY_PROTOCOL | ||
1076 | bool is_wps_fading(void) | ||
1077 | { | ||
1078 | return skin_get_global_state()->is_fading; | ||
1079 | } | ||
1080 | #endif | ||