[Bf-blender-cvs] CVS commit: blender/intern/string STR_String.h

Kent Mein mein at cs.umn.edu
Sat Mar 6 18:04:52 CET 2004


sirdude (Kent Mein) 2004/03/06 18:04:52 CET

  Modified files:
    blender/intern/string STR_String.h 
  
  Log:
  Got rid of a cast to float which was causing a warning. (Used a temp
  var instead)   return (float)atof(something);
  
  is now   float x=atof(something); return x;
  
  There is still another one(warning)in this file but hey its a start.
  
  Kent
  
  Revision  Changes    Path
  1.6       +3 -3      blender/intern/string/STR_String.h



More information about the Bf-blender-cvs mailing list