Skip to content

Commit

Permalink
Fix "press Enter key" message
Browse files Browse the repository at this point in the history
The message said "Press any key to continue...", whereas only
Enter/Return is accepted.

PR #1783 <#1783>
Fixes #1757 <#1757>

Reviewed-by: Yu-Chen Lin <[email protected]>
Signed-off-by: Romain Vimont <[email protected]>
  • Loading branch information
Brinan Sjostrom authored and rom1v committed Oct 1, 2020
1 parent acc65f8 commit 56d237f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ main(int argc, char *argv[]) {

#if defined (__WINDOWS__) && ! defined (WINDOWS_NOCONSOLE)
if (res != 0) {
fprintf(stderr, "Press any key to continue...\n");
fprintf(stderr, "Press Enter to continue...\n");
getchar();
}
#endif
Expand Down

0 comments on commit 56d237f

Please sign in to comment.