Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7676 in orxonox.OLD for trunk/src/lib/util


Ignore:
Timestamp:
May 18, 2006, 11:46:23 AM (18 years ago)
Author:
bensch
Message:

some POD's

Location:
trunk/src/lib/util/loading
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/util/loading/factory.cc

    r7462 r7676  
    150150  else
    151151  {
    152     PRINTF(2)("Could not Fabricate an Object of Class '%s'\n", className);
     152    PRINTF(2)("Could not Fabricate an Object of Class '%s'\n", className.c_str());
    153153    return NULL;
    154154  }
  • trunk/src/lib/util/loading/resource_manager.cc

    r7661 r7676  
    436436      if(File(fullName).isFile())
    437437      {
    438         PRINTF(4)("Image %s resides to %s\n", fileName, fullName);
     438        PRINTF(4)("Image %s resides to %s\n", fileName.c_str(), fullName.c_str());
    439439        tmpResource->pointer = new Texture(fullName, tmpResource->param[0].getInt());
    440440      }
     
    447447          if(File(imgName).isFile())
    448448          {
    449             PRINTF(4)("Image %s resides to %s\n", fileName, imgName);
     449            PRINTF(4)("Image %s resides to %s\n", fileName.c_str(), imgName.c_str());
    450450            tmpResource->pointer = new Texture(imgName, tmpResource->param[0].getInt());
    451451            break;
Note: See TracChangeset for help on using the changeset viewer.