Skip to content

Commit

Permalink
Merge pull request #54 from steve8x8/longtracks
Browse files Browse the repository at this point in the history
Add hours field to track info, issue #15
  • Loading branch information
g3gg0 committed Aug 29, 2023
2 parents 5ffabbd + bfe65c5 commit eea77ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TonieAudio/TonieTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public static bool DumpInfo(StringBuilder message, eDumpFormat dumpFormat, strin
if (granule != ulong.MaxValue)
{
TimeSpan trackOffset = TimeSpan.FromSeconds(granule / 48000.0f);
lengthString = (trackOffset - prevTime).ToString(@"mm\:ss\.ff");
lengthString = (trackOffset - prevTime).ToString(@"hh\:mm\:ss\.ff");
prevTime = trackOffset;
}

Expand Down

0 comments on commit eea77ae

Please sign in to comment.