| 58 | } |
| 59 | |
| 60 | cSound_Amiga::cSound_Amiga() { |
| 61 | |
| 62 | mVal = 0; |
| 63 | mLock = SDL_CreateMutex(); |
| 64 | |
| 65 | mPlayingTrack = -1; |
| 66 | mPlayingSong = -1; |
| 67 | |
| 68 | mAudioSpec = 0; |
| 69 | mCurrentMusic = 0; |
| 70 | mCurrentSfx.resize(5); |
| 71 | devicePrepare(); |
| 72 | } |
| 73 | |
| 74 | cSound_Amiga::~cSound_Amiga() { |
| 75 |