diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-07 08:43:03 +0100 | 
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-08 21:30:48 +0100 | 
| commit | 709fe557a3a5c2dc8675472dac9325f8efdff004 (patch) | |
| tree | fa257eae76fc50d3cbe7b69b5c423108c170af90 /pose-widget | |
| parent | 788cfe69a1668dfd7e6bca16907de696e6063fbe (diff) | |
clean up a bit
Diffstat (limited to 'pose-widget')
| -rw-r--r-- | pose-widget/pose-widget.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/pose-widget/pose-widget.cpp b/pose-widget/pose-widget.cpp index 12de49d3..b10578d9 100644 --- a/pose-widget/pose-widget.cpp +++ b/pose-widget/pose-widget.cpp @@ -277,8 +277,8 @@ void pose_transform::project_quad_texture()      Triangle t(pt[0], pt[1], pt[2]); -    const unsigned orig_pitch = tex.bytesPerLine(); -    const unsigned dest_pitch = image.bytesPerLine(); +    const unsigned orig_pitch = (unsigned)tex.bytesPerLine(); +    const unsigned dest_pitch = (unsigned)image.bytesPerLine();      unsigned char const* __restrict orig = tex.constBits();      unsigned char* __restrict dest = image.bits(); | 
