Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 18, 2005, 10:49:55 AM (19 years ago)
Author:
chris
Message:

orxonox/branches/levelloader: Found the bug that prevented the loaded world from running. Something is missing however, I am only getting a black screen…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/levelloader/src/world_entities/player.cc

    r3542 r3604  
    7373        if( string == NULL)
    7474        {
    75                 PRINTF(1)("Player is missing a proper 'name'\n");
     75                PRINTF0("Player is missing a proper 'name'\n");
    7676                string = "Unknown";
    7777                temp = new char[strlen(string + 2)];
     
    9292        else
    9393        {
    94                 PRINTF(1)("Player is missing a proper 'model'\n");
     94                PRINTF0("Player is missing a proper 'model'\n");
    9595                this->model = new OBJModel( "../data/models/reaplow.obj");
    9696        }
    9797        if( this->model == NULL)
    9898        {
    99                 PRINTF(1)("Player model '%s' could not be loaded\n", string);
     99                PRINTF0("Player model '%s' could not be loaded\n", string);
    100100        }
    101101}
Note: See TracChangeset for help on using the changeset viewer.