Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 27, 2008, 5:14:22 PM (16 years ago)
Author:
rgrieder
Message:

tolua seems to be created correctly. I the existing toluabind.c file to create a tolua application that creates the actual pimped tolua application. But be aware that modifying the *.lua files will not cause a recompile. You need to tell iit manually.

There was quite a stupid issue with static initialisation (I'm really wondering how that could even work with msvc).

However things don't seem to work yet on tardis, at least not remotely. It seems like Ogre can't initialise when using a vnc session. I'll have to look into that locally at ETZ.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/orxonox/GraphicsEngine.cc

    r1641 r1651  
    293293            this->renderWindow_ = root_->initialise(true, "OrxonoxV2");
    294294        }
    295         catch (...)
     295        catch (std::exception& ex)
    296296        {
    297297            COUT(2) << "Error: There was an exception when initialising Ogre Root." << std::endl;
     298                        COUT(1) << ex.what() << std::endl;
    298299            return false;
    299300        }
Note: See TracChangeset for help on using the changeset viewer.