Changeset 3307 for code/trunk/src/core/Game.cc
- Timestamp:
- Jul 19, 2009, 2:12:50 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/Game.cc
r3304 r3307 246 246 247 247 // UPDATE, Core first 248 bool threwException = false; 248 249 try 249 250 { 250 251 this->core_->update(*this->gameClock_); 251 252 } 253 catch (const std::exception& ex) 254 { 255 threwException = true; 256 COUT(0) << "Exception while ticking the Core: " << ex.what() << std::endl; 257 } 252 258 catch (...) 259 { 260 threwException = true; 261 } 262 if (threwException) 253 263 { 254 264 COUT(0) << "An exception occured while ticking the Core. This should really never happen!" << std::endl;
Note: See TracChangeset
for help on using the changeset viewer.