Changeset 7676 in orxonox.OLD for trunk/src/lib/util/loading
- Timestamp:
- May 18, 2006, 11:46:23 AM (19 years ago)
- Location:
- trunk/src/lib/util/loading
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/loading/factory.cc
r7462 r7676 150 150 else 151 151 { 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()); 153 153 return NULL; 154 154 } -
trunk/src/lib/util/loading/resource_manager.cc
r7661 r7676 436 436 if(File(fullName).isFile()) 437 437 { 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()); 439 439 tmpResource->pointer = new Texture(fullName, tmpResource->param[0].getInt()); 440 440 } … … 447 447 if(File(imgName).isFile()) 448 448 { 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()); 450 450 tmpResource->pointer = new Texture(imgName, tmpResource->param[0].getInt()); 451 451 break;
Note: See TracChangeset
for help on using the changeset viewer.