Lines 53-68
Link Here
|
53 |
|
53 |
|
54 |
void World::loadAllSounds() |
54 |
void World::loadAllSounds() |
55 |
{ |
55 |
{ |
56 |
this->loadSound("Sounds/mineexplosion.wav", SOUND_EXPLOSION_MINE); |
56 |
this->loadSound("@GENTOO_DATADIR@/Sounds/mineexplosion.wav", SOUND_EXPLOSION_MINE); |
57 |
this->loadSound("Sounds/missileexplosion.wav", SOUND_EXPLOSION_MISSILE); |
57 |
this->loadSound("@GENTOO_DATADIR@/Sounds/missileexplosion.wav", SOUND_EXPLOSION_MISSILE); |
58 |
this->loadSound("Sounds/spacejump.wav", SOUND_SPACE_JUMP); |
58 |
this->loadSound("@GENTOO_DATADIR@/Sounds/spacejump.wav", SOUND_SPACE_JUMP); |
59 |
this->loadSound("Sounds/driveby.wav", SOUND_DRIVEBY); |
59 |
this->loadSound("@GENTOO_DATADIR@/Sounds/driveby.wav", SOUND_DRIVEBY); |
60 |
this->loadSound("Sounds/missilelaunch.wav", SOUND_MISSILE_LAUNCH); |
60 |
this->loadSound("@GENTOO_DATADIR@/Sounds/missilelaunch.wav", SOUND_MISSILE_LAUNCH); |
61 |
this->loadSound("Sounds/subping.wav", SOUND_AUTODESTROY); |
61 |
this->loadSound("@GENTOO_DATADIR@/Sounds/subping.wav", SOUND_AUTODESTROY); |
62 |
this->loadSound("Sounds/splooge.wav", SOUND_SMOKE); |
62 |
this->loadSound("@GENTOO_DATADIR@/Sounds/splooge.wav", SOUND_SMOKE); |
63 |
this->loadSound("Sounds/spike.wav", SOUND_SPIKE); |
63 |
this->loadSound("@GENTOO_DATADIR@/Sounds/spike.wav", SOUND_SPIKE); |
64 |
this->loadSound("Sounds/acceleration.wav", SOUND_ACCELERATION); |
64 |
this->loadSound("@GENTOO_DATADIR@/Sounds/acceleration.wav", SOUND_ACCELERATION); |
65 |
this->loadSound("Sounds/boing.wav", SOUND_BOING); |
65 |
this->loadSound("@GENTOO_DATADIR@/Sounds/boing.wav", SOUND_BOING); |
66 |
//this->loadSound("Sounds/boing2.wav", SOUND_BOING2); |
66 |
//this->loadSound("Sounds/boing2.wav", SOUND_BOING2); |
67 |
} |
67 |
} |
68 |
|
68 |
|