Skip to content

Commit

Permalink
Misc mesa improvements (#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkova authored Nov 28, 2024
2 parents de5c443 + 1d73397 commit 067b5ff
Show file tree
Hide file tree
Showing 4 changed files with 166 additions and 46 deletions.
2 changes: 1 addition & 1 deletion pkg/c3/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
inline c3_s
c3_sift_short(c3_y buf_y[2])
{
return (buf_y[1] << 8 | buf_y[0]);
return ((c3_s)buf_y[1] << 8 | (c3_s)buf_y[0]);
}

inline c3_w
Expand Down
Loading

0 comments on commit 067b5ff

Please sign in to comment.