Skip to content

Commit

Permalink
Merge pull request #158 from akanchi/master
Browse files Browse the repository at this point in the history
fix #157, 工具生成的融合信息高度不正确
  • Loading branch information
hexleo authored Oct 27, 2021
2 parents 902f8ba + 635ec0e commit 0e7570c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ private FrameSet.Frame getFrame(int frameIndex, SrcSet.Src src, int[] outputArgb
// 只按宽度进行判断防止横跳
if (frame.frame.w > src.w) {
src.w = frame.frame.w;
src.h = frame.mFrame.h;
src.h = frame.frame.h;
}
}
return frame;
Expand Down

0 comments on commit 0e7570c

Please sign in to comment.