- Timestamp:
- Oct 22, 2005, 4:17:51 PM (19 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/sound/sound_buffer.cc
r5386 r5422 54 54 alutLoadWAVFile((ALbyte*)fileName, &format, &data, &this->size, &freq); 55 55 #elif defined __WIN32__ 56 alutLoadWAVFile( fileName, &format, &data, &size, &freq, &this->loop);56 alutLoadWAVFile((ALbyte*)fileName, &format, &data, &size, &freq, &this->loop); 57 57 #else 58 58 alutLoadWAVFile((ALbyte*)fileName, &format, &data, &this->size, &freq, &this->loop); -
trunk/src/util/resource_manager.cc
r5372 r5422 59 59 60 60 this->dataDir = NULL; 61 this->setDataDir("./ ");61 this->setDataDir("./data"); 62 62 this->imageDirs = new tList<char>; 63 63 this->resourceList = new tList<Resource>;
Note: See TracChangeset
for help on using the changeset viewer.