Skip to content

Commit

Permalink
add snapshotting keybinds to help command
Browse files Browse the repository at this point in the history
  • Loading branch information
zeim839 committed Nov 25, 2024
1 parent 3df1002 commit e5be1de
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ int help(int argc, char** argv)
printf("\tH:\t\tTURBO A\n");
printf("\tJ:\t\tBUTTON A\n");
printf("\tK:\t\tBUTTON B\n");
printf("\tL:\t\tTURBO B\n\n");
printf("\tL:\t\tTURBO B\n");
printf("\tQ:\t\tCapture save point\n");
printf("\tTAB:\t\tRecover save point\n\n");
exit(EXIT_SUCCESS);
}

Expand All @@ -90,7 +92,7 @@ int main(int argc, char** argv)
{
if (argc < 2) {
LOG(ERROR, "need at least (1) argument");
printf("Run '%s help' for usage.\n", PACKAGE_NAME);
printf("%s", doc_str);
exit(EXIT_FAILURE);
}

Expand Down

0 comments on commit e5be1de

Please sign in to comment.