Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 8, 2011, 6:26:51 AM (13 years ago)
Author:
rgrieder
Message:

Removed unnecessary changes in mac_osx branch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/mac_osx/src/orxonox/sound/SoundManager.cc

    r7767 r8043  
    8383        SetConfigValue(bDisableSound_, false);
    8484        if (bDisableSound_)
    85             ThrowException(InitialisationAborted, "Sound: Not loading at all");       
     85            ThrowException(InitialisationAborted, "Sound: Not loading at all");
    8686        if (!alutInitWithoutContext(NULL, NULL))
    8787            ThrowException(InitialisationFailed, "Sound Error: ALUT initialisation failed: " << alutGetErrorString(alutGetError()));
     
    131131        GameMode::setPlaysSound(true);
    132132        Loki::ScopeGuard resetPlaysSoundGuard = Loki::MakeGuard(&GameMode::setPlaysSound, false);
    133        
     133
    134134        // Get some information about the sound
    135135        if (const char* version = alGetString(AL_VERSION))
    136             COUT(4) << "Sound: --- OpenAL Version: " << version << std::endl;           
     136            COUT(4) << "Sound: --- OpenAL Version: " << version << std::endl;
    137137        if (const char* vendor = alGetString(AL_VENDOR))
    138138            COUT(4) << "Sound: --- OpenAL Vendor : " << vendor << std::endl;
Note: See TracChangeset for help on using the changeset viewer.