mirror of https://github.com/stella-emu/stella.git
Fix warnings from clang.
This commit is contained in:
parent
543ddf2ffe
commit
9b620435de
|
@ -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.
|
||||||
|
|
|
@ -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());
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue