Changeset 7174 for code/trunk/src/orxonox/graphics
- Timestamp:
- Aug 18, 2010, 12:08:05 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/graphics/ParticleEmitter.cc
r5929 r7174 114 114 this->particles_->setEnabled(this->isActive()); 115 115 } 116 catch ( ...)116 catch (const std::exception& ex) 117 117 { 118 118 COUT(1) << "Error: Couln't load particle effect \"" << this->source_ << "\" because:" << std::endl 119 << Exception::handleMessage() << std::endl;119 << ex.what() << std::endl; 120 120 } 121 121 }
Note: See TracChangeset
for help on using the changeset viewer.