Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 3, 2009, 8:22:49 PM (14 years ago)
Author:
rgrieder
Message:

Fixed the sound bug where it didn't play when setting the source too late.
And fixed it again by moving setConfigValues in GSMainMenu.
Sound works for me now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation2/src/orxonox/sound/BaseSound.cc

    r6232 r6234  
    197197        this->setLooping(getLooping());
    198198        if (this->isPlaying() || this->isPaused())
    199             BaseSound::play();
     199        {
     200            alSourcePlay(this->audioSource_);
     201            if (int error = alGetError())
     202                COUT(2) << "Sound: Error playing sound: " << error << std::endl;
     203        }
    200204        if (this->isPaused())
    201             BaseSound::pause();
     205            alSourcePause(this->audioSource_);
    202206    }
    203207}
Note: See TracChangeset for help on using the changeset viewer.