libretro: minor cleanup.

This commit is contained in:
Stephen Anthony 2019-05-19 12:02:09 -02:30
parent 3d0b11d20f
commit af40918d17
1 changed files with 1 additions and 3 deletions

View File

@ -44,8 +44,6 @@ SoundLIBRETRO::SoundLIBRETRO(OSystem& osystem, AudioSettings& audioSettings)
myUnderrun(false),
myAudioSettings(audioSettings)
{
ASSERT_MAIN_THREAD;
Logger::log("SoundLIBRETRO::SoundLIBRETRO started ...", 2);
Logger::log("SoundLIBRETRO::SoundLIBRETRO initialized", 2);
}
@ -57,7 +55,7 @@ SoundLIBRETRO::~SoundLIBRETRO()
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void SoundLIBRETRO::open(shared_ptr<AudioQueue> audioQueue,
EmulationTiming* emulationTiming)
EmulationTiming* emulationTiming)
{
myEmulationTiming = emulationTiming;