Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Müller <nexyon@gmail.com>2015-04-21 16:20:19 +0300
committerJörg Müller <nexyon@gmail.com>2015-07-28 15:01:52 +0300
commitf700c1f3a826ad7d2576822779f676a9b16fde7a (patch)
tree80ba565215d24aab36d1cc027a227845aca66fed /source/gameengine/BlenderRoutines
parent009bb9e5c9fb6542193e6a4250643420a7016726 (diff)
Audaspace: name fixes and external library update.
Diffstat (limited to 'source/gameengine/BlenderRoutines')
-rw-r--r--source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp b/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp
index 93ef1fa8c46..7dfefb07184 100644
--- a/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp
+++ b/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp
@@ -505,7 +505,7 @@ extern "C" void StartKetsjiShell(struct bContext *C, struct ARegion *ar, rcti *c
ketsjiengine->InitDome(scene->gm.dome.res, scene->gm.dome.mode, scene->gm.dome.angle, scene->gm.dome.resbuf, scene->gm.dome.tilt, scene->gm.dome.warptext);
// initialize 3D Audio Settings
- AUD_Device* device = sound_get_device();
+ AUD_Device* device = BKE_sound_get_device();
AUD_Device_setSpeedOfSound(device, scene->audio.speed_of_sound);
AUD_Device_setDopplerFactor(device, scene->audio.doppler_factor);
AUD_Device_setDistanceModel(device, AUD_DistanceModel(scene->audio.distance_model));
@@ -675,7 +675,7 @@ extern "C" void StartKetsjiShell(struct bContext *C, struct ARegion *ar, rcti *c
}
// stop all remaining playing sounds
- AUD_Device_stopAll(sound_get_device());
+ AUD_Device_stopAll(BKE_sound_get_device());
} while (exitrequested == KX_EXIT_REQUEST_RESTART_GAME || exitrequested == KX_EXIT_REQUEST_START_OTHER_GAME);