Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 5, 2007, 7:28:46 PM (17 years ago)
Author:
nicolape
Message:

We now have a nice backgroundsound playing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/audio/AudioStream.cc

    r411 r419  
    44namespace audio
    55{
    6         void AudioStream::open(string path)
     6        void AudioStream::open(std::string path)
    77        {
    88            int result;
     
    6161        void AudioStream::display()
    6262        {
    63             cout
     63            std::cout
    6464                << "version         " << vorbisInfo->version         << "\n"
    6565                << "channels        " << vorbisInfo->channels        << "\n"
     
    7373               
    7474            for(int i = 0; i < vorbisComment->comments; i++)
    75                 cout << "   " << vorbisComment->user_comments[i] << "\n";
    76                
    77             cout << endl;
     75                std::cout << "   " << vorbisComment->user_comments[i] << "\n";
     76               
     77            std::cout << std::endl;
    7878        }
    7979       
     
    212212                    return std::string("Invalid Vorbis header.");
    213213                case OV_EFAULT:
    214                     return string("Internal logic fault (bug or heap/stack corruption.");
     214                    return std::string("Internal logic fault (bug or heap/stack corruption.");
    215215                default:
    216216                    return std::string("Unknown Ogg error.");
     
    218218        }
    219219}
     220
Note: See TracChangeset for help on using the changeset viewer.