Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 22, 2010, 3:32:45 PM (15 years ago)
Author:
erwin
Message:

Fixed a possible source for future problems. but still no sounds. Try everything in one thread with the same result

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/sound5/src/orxonox/sound/SoundStreamer.cc

    r6733 r6769  
    104104        }
    105105
    106         alSourcei(audioSource, AL_LOOPING, AL_TRUE);
     106        //alSourcei(audioSource, AL_LOOPING, AL_TRUE);
    107107
    108108        alSourcePlay(audioSource);
    109109        if(ALint error = alGetError())
    110             COUT(2) << "Sound: Could not start ambient sound" << std::endl;
     110            COUT(2) << "Sound: Could not start ambient sound" << getALErrorString(error) << std::endl;
    111111
    112112        while(true) // Stream forever, control through thread control
Note: See TracChangeset for help on using the changeset viewer.