diff options
| -rw-r--r-- | apps/gui/gwps.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c index db92961..707615c 100644 --- a/apps/gui/gwps.c +++ b/apps/gui/gwps.c @@ -435,12 +435,18 @@ long gui_wps_show(void) } else { if (!wps_state.paused) +#if (CONFIG_CODEC == SWCODEC) + audio_pre_ff_rewind(); +#else audio_pause(); +#endif audio_ff_rewind(0); +#if (CONFIG_CODEC != SWCODEC) if (!wps_state.paused) audio_resume(); +#endif } break; |