Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3193 in orxonox.OLD for orxonox/trunk/src/array.cc


Ignore:
Timestamp:
Dec 16, 2004, 4:00:43 PM (21 years ago)
Author:
bensch
Message:

orxonox/trunk/src: merged importer into src again

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/array.cc

    r3185 r3193  
    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.