mirror of https://github.com/stella-emu/stella.git
Eliminate warning for unused parameter.
This commit is contained in:
parent
97487cdaef
commit
20bac793dd
|
@ -796,7 +796,7 @@ ByteBuffer OSystem::openROM(const FilesystemNode& rom, size_t& size,
|
||||||
if((size = rom.read(image, sizeToRead)) == 0)
|
if((size = rom.read(image, sizeToRead)) == 0)
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
catch(const runtime_error& e)
|
catch(const runtime_error&)
|
||||||
{
|
{
|
||||||
if(showErrorMessage) // If caller wants error messages, pass it back
|
if(showErrorMessage) // If caller wants error messages, pass it back
|
||||||
throw;
|
throw;
|
||||||
|
|
Loading…
Reference in New Issue