Fix improper clearing of the sample queue in sceAtrac.cpp

This commit is contained in:
lioncash 2013-05-30 12:15:17 -04:00
parent 743f5185b8
commit 85098289e8

View File

@ -113,7 +113,7 @@ struct Atrac {
pFrame = 0;
#endif // USE_FFMPEG
decoder_context = 0;
sampleQueue.empty();
sampleQueue.clear();
}
~Atrac() {
@ -130,7 +130,7 @@ struct Atrac {
data_buf = 0;
Atrac3plus_Decoder::closeContext(&decoder_context);
sampleQueue.empty();
sampleQueue.clear();
}
void DoState(PointerWrap &p) {