Skip to content

Commit

Permalink
DrawSyncInfo の時間表示がおかしかったのを修正
Browse files Browse the repository at this point in the history
git-svn-id: file:///home/yoshi/.svnrepos/vsd/trunk@717 177d47f1-6453-0410-9475-f12f96c2b1a2
  • Loading branch information
yoshinrt committed Apr 19, 2014
1 parent d7f79c0 commit 5b4d55b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vsd_filter/CVsdFilterAvu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ WCHAR *CVsdFilter::DrawSyncInfoFormatTime(
LPWSTR p = wcschr( pBuf, '\0' );
swprintf(
p, uBufSize - ( p - pBuf ), L".%02d",
(( UINT )iBaseTime + iTime ) % 1000 / 10
( UINT )(( iBaseTime + iTime ) % 1000 ) / 10
);

return pBuf;
Expand Down
Binary file modified vsd_filter/vsd_filter.suo
Binary file not shown.

0 comments on commit 5b4d55b

Please sign in to comment.