Skip to content

Commit

Permalink
Fixed L+SELECT payload being broken (annoying LFN to 8.3 conversion r…
Browse files Browse the repository at this point in the history
…ules). Now the payload is sel_NAME.bin
  • Loading branch information
AuroraWright committed Apr 18, 2016
1 parent a76c943 commit d2d6e78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions loader/source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void main(void)
((pressed & BUTTON_X) && LOAD_PAYLOAD("x")) ||
((pressed & BUTTON_Y) && LOAD_PAYLOAD("y")) ||
((pressed & BUTTON_R1) && LOAD_PAYLOAD("r")) ||
((pressed & BUTTON_SELECT) && LOAD_PAYLOAD("select")) ||
((pressed & BUTTON_SELECT) && LOAD_PAYLOAD("sel")) ||
LOAD_PAYLOAD("def"))
((void (*)())PAYLOAD_ADDRESS)();
}
}

0 comments on commit d2d6e78

Please sign in to comment.