From 34a5c986ebab45f06258b6da12e0258ad570a67b Mon Sep 17 00:00:00 2001 From: "N.N." Date: Mon, 11 Dec 2006 23:14:28 +0000 Subject: fixed warnings and added newer quicktime svn path=/trunk/externals/pidip/; revision=6809 --- modules/pdp_spotlight.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'modules/pdp_spotlight.c') diff --git a/modules/pdp_spotlight.c b/modules/pdp_spotlight.c index e294642..93cbd1d 100644 --- a/modules/pdp_spotlight.c +++ b/modules/pdp_spotlight.c @@ -37,22 +37,22 @@ typedef struct pdp_spotlight_struct t_float x_f; t_outlet *x_outlet0; - t_int x_packet0; - t_int x_packet1; - t_int x_dropped; - t_int x_queue_id; - - t_int x_vwidth; - t_int x_vheight; - t_int x_vsize; - t_int x_cx; // coordinates of lens center - t_int x_cy; // coordinates of lens center - t_int x_ssize; // width of the spotlight + int x_packet0; + int x_packet1; + int x_dropped; + int x_queue_id; + + int x_vwidth; + int x_vheight; + int x_vsize; + int x_cx; // coordinates of lens center + int x_cy; // coordinates of lens center + int x_ssize; // width of the spotlight t_float x_strength; // strength of the light (0<=strength<=1) - t_int x_colorR; // red component of the color - t_int x_colorG; // green component of the color - t_int x_colorB; // blue component of the color + int x_colorR; // red component of the color + int x_colorG; // green component of the color + int x_colorB; // blue component of the color } t_pdp_spotlight; -- cgit v1.2.1