Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 29, 2007, 5:12:16 PM (16 years ago)
Author:
nicolape
Message:
  • Added CmakeLists so that it works on my machine for testing
  • Fixed a Bug in AudioBuffer
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/audio/src/audio/AudioBuffer.h

    r349 r350  
    1919        private:
    2020                // Buffers hold sound data.
    21                 ALuint data;
     21                ALuint buffer;
    2222                // Identifier
    2323                std::string name;
     24                // True if AL was able to load data
     25                ALboolean loaded;
     26               
     27                ALenum format;
     28                ALsizei size;
     29                ALvoid* data;
     30                ALsizei freq;
     31                ALboolean loop;
    2432        };
    2533}
Note: See TracChangeset for help on using the changeset viewer.