Changeset 243 for trunk/thune/make.c

Show
Ignore:
Timestamp:
07/31/06 15:03:05 (2 years ago)
Author:
krobillard
Message:

Thune - Fixed VC warnings.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/make.c

    r241 r243  
    906906    { 
    907907        if( ur_is(it, UT_DECIMAL) ) 
    908             res->vec3.xyz[ len++ ] = ur_decimal(it); 
     908            res->vec3.xyz[ len++ ] = (float) ur_decimal(it); 
    909909        else if( ur_is(it, UT_INT) ) 
    910             res->vec3.xyz[ len++ ] = (double) ur_int(it); 
     910            res->vec3.xyz[ len++ ] = (float) ur_int(it); 
    911911        if( len == 3 ) 
    912912            break;