Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 5, 2006, 9:07:04 PM (18 years ago)
Author:
bottac
Message:

CrPhysicsFullWalk on Static Models and BSP Patches almost working. libODE≥0.7 required.
Screenshot: http://people.ee.ethz.ch/~bottac/Collision_ODE/

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ODE/src/lib/graphics/text_engine/text_engine.cc

    r9869 r9919  
    8686void TextEngine::enableFonts()
    8787{
    88   if (!TTF_WasInit())
     88  if (false /*!TTF_WasInit()*/)
    8989  {
    9090    if(TTF_Init()==-1)
     
    102102void TextEngine::disableFonts()
    103103{
    104   if (TTF_WasInit())
     104  if (false /*TTF_WasInit()*/)
    105105  {
    106106    //      Font::removeDefaultFont();
     
    141141  SDL_version compile_version;
    142142  SDL_version link_version;
    143   TTF_VERSION(&compile_version);
    144   link_version = *TTF_Linked_Version();
     143  //TTF_VERSION(&compile_version);
     144 // link_version = *TTF_Linked_Version();
    145145
    146146  if (compile_version.major == link_version.major &&
Note: See TracChangeset for help on using the changeset viewer.