Changeset 3604 in orxonox.OLD for orxonox/branches/levelloader/src/world_entities
- Timestamp:
- Mar 18, 2005, 10:49:55 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/levelloader/src/world_entities/player.cc
r3542 r3604 73 73 if( string == NULL) 74 74 { 75 PRINTF (1)("Player is missing a proper 'name'\n");75 PRINTF0("Player is missing a proper 'name'\n"); 76 76 string = "Unknown"; 77 77 temp = new char[strlen(string + 2)]; … … 92 92 else 93 93 { 94 PRINTF (1)("Player is missing a proper 'model'\n");94 PRINTF0("Player is missing a proper 'model'\n"); 95 95 this->model = new OBJModel( "../data/models/reaplow.obj"); 96 96 } 97 97 if( this->model == NULL) 98 98 { 99 PRINTF (1)("Player model '%s' could not be loaded\n", string);99 PRINTF0("Player model '%s' could not be loaded\n", string); 100 100 } 101 101 }
Note: See TracChangeset
for help on using the changeset viewer.