diff options
| author | ailurux <ailuruxx@gmail.com> | 2024-07-22 15:42:20 +1000 |
|---|---|---|
| committer | ailurux <ailuruxx@gmail.com> | 2024-07-22 15:42:20 +1000 |
| commit | 496baefe663795a030f528853c377c158af357a7 (patch) | |
| tree | 3a81847b17abf38f069a688a3ee48621d38223f6 /src/tangara/audio/playlist.cpp | |
| parent | 514540d89cb99725aa38455c52340f2cd4115896 (diff) | |
| download | tangara-fw-496baefe663795a030f528853c377c158af357a7.tar.gz | |
Oops, forgot a return statement
Diffstat (limited to 'src/tangara/audio/playlist.cpp')
| -rw-r--r-- | src/tangara/audio/playlist.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tangara/audio/playlist.cpp b/src/tangara/audio/playlist.cpp index f34be9c9..dcb9bfb7 100644 --- a/src/tangara/audio/playlist.cpp +++ b/src/tangara/audio/playlist.cpp @@ -97,6 +97,7 @@ auto Playlist::skipTo(size_t position) -> void { ESP_LOGW(kTag, "File offset cache failed, falling back..."); f_rewind(&file_); advanceBy(pos_); + return; } auto entry = offset_cache_.at(quotient); // Go to byte offset |
