Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 19, 2009, 2:58:24 PM (15 years ago)
Author:
rgrieder
Message:

Reverted TclThreadManager commits to make a tag (there's possibly still an unresolved issue with the TclThreadManager under linux when terminating the game (mutex assert)).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/core/Game.cc

    r3307 r3313  
    246246
    247247            // UPDATE, Core first
    248             bool threwException = false;
    249248            try
    250249            {
    251250                this->core_->update(*this->gameClock_);
    252251            }
    253             catch (const std::exception& ex)
    254             {
    255                 threwException = true;
    256                 COUT(0) << "Exception while ticking the Core: " << ex.what() << std::endl;
    257             }
    258252            catch (...)
    259             {
    260                 threwException = true;
    261             }
    262             if (threwException)
    263253            {
    264254                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.