]> git.jsancho.org Git - lugaru.git/commitdiff
Drop Doppler
authorAlexander Monakov <amonakov@gmail.com>
Fri, 17 Dec 2010 23:23:08 +0000 (02:23 +0300)
committerAlexander Monakov <amonakov@gmail.com>
Fri, 17 Dec 2010 23:23:08 +0000 (02:23 +0300)
Source/GameInitDispose.cpp
Source/openal_wrapper.cpp
Source/openal_wrapper.h

index e7889a4d5cac70e830513c4193769a74488726e4..cdc8b9bfa5603eef98ade32c15ac3901b77c8ff8 100644 (file)
@@ -170,8 +170,6 @@ void Game::LoadSounds()
 
        LOG(std::string("Loading sounds..."));
 
-       OPENAL_3D_SetDopplerFactor(0);
-
        OPENAL_SetSFXMasterVolume((int)(volume*255));
 
        if(visibleloading){LoadingScreen(); loadscreencolor=5;}
index 4dddfd59df1d7c72f14b5e6c0cf1222fbd86a7b9..5ac0f6b08979999a575109c84096fb1152174e00 100644 (file)
@@ -185,12 +185,6 @@ AL_API signed char OPENAL_3D_SetAttributes(int channel, const float *pos, const
     return true;
 }
 
-AL_API void OPENAL_3D_SetDopplerFactor(float scale)
-{
-    if (!initialized) return;
-    // unimplemented...looks like init routines just call this with scale == 0.0f anyhow.
-}
-
 AL_API signed char OPENAL_Init(int mixrate, int maxsoftwarechannels, unsigned int flags)
 {
     if (initialized) return false;
index 99fad2cea8eaa4d4f7b1512f8c91fceef8bd4736..f0b730f6042234942607b7217633328f367fb01f 100644 (file)
@@ -70,7 +70,6 @@ extern "C" {
 
 AL_API void OPENAL_3D_Listener_SetAttributes(const float *pos, const float *vel, float fx, float fy, float fz, float tx, float ty, float tz);
 AL_API signed char OPENAL_3D_SetAttributes(int channel, const float *pos, const float *vel);
-AL_API void OPENAL_3D_SetDopplerFactor(float scale);
 AL_API signed char OPENAL_Init(int mixrate, int maxsoftwarechannels, unsigned int flags);
 AL_API void OPENAL_Close();
 AL_API OPENAL_SAMPLE *OPENAL_GetCurrentSample(int channel);