Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3188 in orxonox.OLD


Ignore:
Timestamp:
Dec 15, 2004, 9:40:18 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: better news

Location:
orxonox/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/NEWS

    r3171 r3188  
    11Date: December 14, 2004
    22Topic: Repository Moved
    3 Body: Today we moved the repository. The new location of the repository is <A href=\"http://orxonox.ethz.ch/repos/reporx\">http://orxonox.ethz.ch/repos/reporx</A>.
     3Body: Today we moved the repository. The new location of the repository is <A href="http://orxonox.ethz.ch/repos/reporx">http://orxonox.ethz.ch/repos/reporx</A>.
    44
    55Date:   November 16, 2004
  • orxonox/trunk/importer/array.cc

    r3140 r3188  
    6868  if (verbose >= 3)
    6969    printf ("Finalizing array. Length: %i\n", entryCount); 
    70   if ((array = (GLfloat*)malloc( entryCount* sizeof(GLfloat))) == NULL)
    71   //  if ((array = new GLfloat [entryCount]) == NULL)
     70  //  if ((array = (GLfloat*)malloc( entryCount* sizeof(GLfloat))) == NULL)
     71  if ((array = new GLfloat [entryCount]) == NULL)
    7272    printf ("could not allocate %i data Blocks\n", entryCount);
    7373  Entry* walker = firstEntry;
Note: See TracChangeset for help on using the changeset viewer.