Skip to content

Commit

Permalink
remove inline keyword from function yuv_to_rgb24 in cl_cin.c to fix c…
Browse files Browse the repository at this point in the history
…ompilation on windows
  • Loading branch information
jeremiah-sypult committed May 10, 2013
1 parent f6cb245 commit c2a5852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/client/cl_cin.c
Expand Up @@ -644,7 +644,7 @@ static unsigned short yuv_to_rgb( long y, long u, long v )
*
******************************************************************************/

static inline unsigned int yuv_to_rgb24( long y, long u, long v )
static unsigned int yuv_to_rgb24( long y, long u, long v )
{
long r,g,b,YY = (long)(ROQ_YY_tab[(y)]);

Expand Down

0 comments on commit c2a5852

Please sign in to comment.