mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 05:45:38 +00:00
MpegAudio.cpp: Comment out debug logging of music start offsets
This commit is contained in:
parent
dbfe2b1a72
commit
c705a896d3
|
@ -251,7 +251,8 @@ void MpegDec::SetMemory(const uint8_t *data, int offset, int length, bool loop)
|
||||||
dec.loop = loop;
|
dec.loop = loop;
|
||||||
dec.stopped = false;
|
dec.stopped = false;
|
||||||
|
|
||||||
printf("SET MEMORY: %08x\n", offset);
|
// Uncomment this line to print out track offsets in the MPEG ROM
|
||||||
|
//printf("MPEG: Set memory: %08x\n", offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MpegDec::UpdateMemory(const uint8_t* data, int offset, int length, bool loop)
|
void MpegDec::UpdateMemory(const uint8_t* data, int offset, int length, bool loop)
|
||||||
|
@ -300,7 +301,8 @@ void MpegDec::UpdateMemory(const uint8_t* data, int offset, int length, bool loo
|
||||||
|
|
||||||
dec.loop = loop;
|
dec.loop = loop;
|
||||||
|
|
||||||
printf("UPDATE MEMORY: %08x\n", offset);
|
// Uncomment this line to print out track offsets in the MPEG ROM
|
||||||
|
//printf("MPEG: Update memory: %08x\n", offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
int MpegDec::GetPosition()
|
int MpegDec::GetPosition()
|
||||||
|
|
Loading…
Reference in a new issue