Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into issue_166
Browse files Browse the repository at this point in the history
  • Loading branch information
boerge1 committed Jan 30, 2024
2 parents e0d15f4 + 3fd3c0e commit fb1a2e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ Die SD Karte (Ordner mp3 und advert) hat sich gegenüber der Version 3.1.2 geän

## Version 3.1.5 (30.01.2024)
- [Issue 166](https://github.com/tonuino/TonUINO-TNG/issues/166): Issue_166: generateRamdomSeed() does not generate a random value
- [Issue 165](https://github.com/tonuino/TonUINO-TNG/issues/165): 'Play last card' does not work as ShortCut

## Version 3.1.5 (21.01.2024)
- [Issue 162](https://github.com/tonuino/TonUINO-TNG/issues/162): Prepare optional feature ROTARY_ENCODER for Nano Every
Expand Down
2 changes: 1 addition & 1 deletion src/state_machine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ bool Base::readCard() {

bool Base::handleShortcut(uint8_t shortCut) {
folderSettings &sc_folderSettings = settings.getShortCut(shortCut);
if (sc_folderSettings.folder != 0 && sc_folderSettings.folder != 0xff) {
if (sc_folderSettings.folder != 0) {
if (sc_folderSettings.mode != pmode_t::repeat_last)
tonuino.setFolder(&sc_folderSettings);
if (tonuino.getFolder() != 0) {
Expand Down

0 comments on commit fb1a2e1

Please sign in to comment.