Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8919


Ignore:
Timestamp:
Nov 2, 2011, 3:43:42 PM (12 years ago)
Author:
fmauro
Message:

Corrected error in comments

Location:
code/branches/environment3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/environment3/data/levels/asteroidField.oxw

    r8917 r8919  
    3737    <?lua
    3838        dofile("includes/asteroidField.lua")
    39         asteroidField(0, 0, 0, 150, 50,12000, 250)
     39        asteroidField(0, 0, 0, 150, 50, 12000, 250)
    4040    ?>
    4141   
  • code/branches/environment3/data/levels/includes/asteroidField.lua

    r8917 r8919  
    11--[[ asteroid field generator
    2 --[[
    3 --[[ generates asteroid field
    4 --[[ posX, posY, posZ - position in space
    5 --[[ minSize, maxSize - size boundaries of each asteroid
    6 --[[ radius - size of the cube around position in space
    7 --[[ count - number of asteroids
     2generates asteroid field
     3        posX, posY, posZ - position in space
     4        minSize, maxSize - size boundaries of each asteroid
     5        radius - size of the cube around position in space
     6        count - number of asteroids
     7--]]
    88function asteroidField(posX, posY, posZ, minSize, maxSize, radius, count)
    99        for i = 1, count, 1
  • code/branches/environment3/src/libraries/util/SignalHandler.cc

    r8858 r8919  
    7070
    7171      catchSignal( SIGSEGV );
    72       catchSignal( SIGABRT );
     72//      catchSignal( SIGABRT );
    7373      catchSignal( SIGILL );
    7474    }
     
    127127      if( SignalHandler::singletonPtr_s == 0 )
    128128      {
    129         orxout(user_error) << "Received signal " << sigName.c_str() << endl << "Can't write backtrace because SignalHandler is already destroyed" << endl;
     129        orxout(user_error) << "Received signal(sigHandler already destroyed) " << sigName.c_str() << endl << "Can't write backtrace because SignalHandler is already destroyed" << endl;
    130130        exit(EXIT_FAILURE);
    131131      }
     
    137137
    138138
    139       orxout(user_error) << "Received signal " << sigName.c_str() << endl << "Try to write backtrace to file orxonox_crash.log" << endl;
     139      orxout(user_error) << "Received signal(second error) " << sigName.c_str() << endl << "Try to write backtrace to file orxonox_crash.log" << endl;
    140140
    141141     
Note: See TracChangeset for help on using the changeset viewer.