Skip to content

Commit

Permalink
fixed file name generation bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonm-unity committed Dec 5, 2017
1 parent e76743f commit 1eb95e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/FrameRecorder/Core/Engine/FileNameGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public string BuildFileName( RecordingSession session, int frame, int width, int
#else
.Replace(tags[(int)ETags.Product], "(prd-NA)")
#endif
.Replace(tags[(int)ETags.Time], string.Format( "{0}h{1}m",session.m_SessionStartTS.ToString("hh"),session.m_SessionStartTS.ToString("mm") ))
.Replace(tags[(int)ETags.Time], string.Format( "{0}h{1}m",session.m_SessionStartTS.ToString("HH"),session.m_SessionStartTS.ToString("mm") ))
.Replace(tags[(int)ETags.Date], session.m_SessionStartTS.ToShortDateString().Replace('/','-'))
;

Expand Down

0 comments on commit 1eb95e7

Please sign in to comment.