diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-07-16 22:29:11 +0300 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-07-16 22:29:11 +0300 |
commit | 447d3a0984575e531b4c82cb0f6e261864514aa7 (patch) | |
tree | f77c38d92329129eac40d39340ae0460212be865 /src | |
parent | 18fda05b9cc43841ca622a674f8d07cae0010381 (diff) | |
download | xine-lib-447d3a0984575e531b4c82cb0f6e261864514aa7.tar.gz xine-lib-447d3a0984575e531b4c82cb0f6e261864514aa7.tar.bz2 |
Fixed variable type
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_opengl2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/video_out_opengl2.c b/src/video_out/video_out_opengl2.c index 910ed077a..23dabc726 100644 --- a/src/video_out/video_out_opengl2.c +++ b/src/video_out/video_out_opengl2.c @@ -131,7 +131,7 @@ typedef struct { opengl2_program_t sharpness_program; float csc_matrix[3 * 4]; - float *color_standard; + int color_standard; int update_csc; int saturation; int contrast; |