Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Commit

Permalink
BUGFIX, when converting a cd with only one track, it will not move th…
Browse files Browse the repository at this point in the history
…e track now.
  • Loading branch information
john32b committed Dec 13, 2018
1 parent 0b18551 commit 1e1dab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdcrush/prog/JobCrush.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public JobCrush(CrushParams par):base("Compress CD")
// Data track was not cut or encoded.
// It's in the input folder, don't move it
if(track.isData && p.cd.MULTIFILE)
if( track.isData && ( p.cd.MULTIFILE || p.cd.tracks.length == 1) )
{
if(p.mode==1)
{
Expand Down

0 comments on commit 1e1dab7

Please sign in to comment.