Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5422 in orxonox.OLD


Ignore:
Timestamp:
Oct 22, 2005, 4:17:51 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: windows works, and the default data-path in the resource-Manager changed to ./data

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/sound/sound_buffer.cc

    r5386 r5422  
    5454  alutLoadWAVFile((ALbyte*)fileName, &format, &data, &this->size, &freq);
    5555#elif defined __WIN32__
    56   alutLoadWAVFile(fileName, &format, &data, &size, &freq, &this->loop);
     56  alutLoadWAVFile((ALbyte*)fileName, &format, &data, &size, &freq, &this->loop);
    5757#else
    5858  alutLoadWAVFile((ALbyte*)fileName, &format, &data, &this->size, &freq, &this->loop);
  • trunk/src/util/resource_manager.cc

    r5372 r5422  
    5959
    6060  this->dataDir = NULL;
    61   this->setDataDir("./");
     61  this->setDataDir("./data");
    6262  this->imageDirs = new tList<char>;
    6363  this->resourceList = new tList<Resource>;
Note: See TracChangeset for help on using the changeset viewer.