Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

some POD's

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.