Skip to content

Commit

Permalink
Don't mention subtitles if disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
colinleroy committed May 5, 2024
1 parent 746c503 commit 650b6bd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/wozamp/videoplay.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ int main(void) {
gotoxy(0, 20);
cputs("Loading...\r\n"
"Controls: Space: Play/Pause, Esc: Quit player\r\n"
" Left/Right: Rewind/Forward, Tab: Toggle subtitles\r\n"
" Left/Right: Rewind/Forward, ");
if (subtitles) {
cputs( "Tab: Toggle subtitles");
}
cputs("\r\n"
" -/=/+: Volume up/default/down S: Toggle speed/quality");

read_metadata_again:
Expand Down

0 comments on commit 650b6bd

Please sign in to comment.