Skip to content

Commit 1eb95e7

Browse files
committed
fixed file name generation bug
1 parent e76743f commit 1eb95e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/FrameRecorder/Core/Engine/FileNameGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public string BuildFileName( RecordingSession session, int frame, int width, int
129129
#else
130130
.Replace(tags[(int)ETags.Product], "(prd-NA)")
131131
#endif
132-
.Replace(tags[(int)ETags.Time], string.Format( "{0}h{1}m",session.m_SessionStartTS.ToString("hh"),session.m_SessionStartTS.ToString("mm") ))
132+
.Replace(tags[(int)ETags.Time], string.Format( "{0}h{1}m",session.m_SessionStartTS.ToString("HH"),session.m_SessionStartTS.ToString("mm") ))
133133
.Replace(tags[(int)ETags.Date], session.m_SessionStartTS.ToShortDateString().Replace('/','-'))
134134
;
135135

0 commit comments

Comments
 (0)