Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Commit

Permalink
Fix options file saving
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdanielps committed Jan 20, 2016
1 parent 55ce9d5 commit 4d8486f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/common/vb_set.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ int saveFileOptions(void) {
return 1;

fprintf(f, "[vbopt]\n");
fprintf(f, "maxcycles=%d\n", tVBOpt.FRMSKIP);
fprintf(f, "maxcycles=%d\n", tVBOpt.MAXCYCLES);
fprintf(f, "frmskip=%d\n", tVBOpt.FRMSKIP);
fprintf(f, "dspmode=%d\n", tVBOpt.DSPMODE);
fprintf(f, "dspswap=%d\n", tVBOpt.DSPSWAP);
Expand Down

0 comments on commit 4d8486f

Please sign in to comment.