Skip to content

Commit

Permalink
fix #157, 工具生成的融合信息高度不正确
Browse files Browse the repository at this point in the history
  • Loading branch information
akanchi committed Oct 26, 2021
1 parent 902f8ba commit 635ec0e
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 635ec0e

Please sign in to comment.