Fix warnings from clang.

This commit is contained in:
Stephen Anthony 2020-07-27 10:45:41 -02:30
parent 543ddf2ffe
commit 9b620435de
2 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ class SoundSDL2 : public Sound
@param devices List of device names @param devices List of device names
*/ */
void queryHardware(VariantList& devices); void queryHardware(VariantList& devices) override;
/** /**
Invoked by the sound callback to process the next sound fragment. Invoked by the sound callback to process the next sound fragment.

View File

@ -470,7 +470,7 @@ string OSystem::createConsole(const FilesystemNode& rom, const string& md5sum,
<< " ROM file: " << myRomFile.getShortPath() << endl; << " ROM file: " << myRomFile.getShortPath() << endl;
FilesystemNode propsFile(myRomFile.getPathWithExt(".pro")); FilesystemNode propsFile(myRomFile.getPathWithExt(".pro"));
if(propsFile.exists()) if(propsFile.exists())
buf << " PRO file: " << propsFile.getShortPath() << endl; buf << " PRO file: " << propsFile.getShortPath() << endl;
buf << endl << getROMInfo(*myConsole); buf << endl << getROMInfo(*myConsole);
Logger::info(buf.str()); Logger::info(buf.str());