mirror of
https://github.com/libretro/stella2023.git
synced 2024-11-27 02:40:37 +00:00
Fix 'dangling else' warning from clang.
This commit is contained in:
parent
d6224a8a6e
commit
3544270f58
@ -536,6 +536,7 @@ string OSystem::createConsole(const FSNode& rom, string_view md5sum, bool newrom
|
||||
#endif
|
||||
|
||||
if(!showmessage)
|
||||
{
|
||||
if(settings().getBool(devSettings ? "dev.detectedinfo" : "plr.detectedinfo"))
|
||||
{
|
||||
ostringstream msg;
|
||||
@ -553,6 +554,8 @@ string OSystem::createConsole(const FSNode& rom, string_view md5sum, bool newrom
|
||||
msg << "Stella " << STELLA_VERSION;
|
||||
myFrameBuffer->showTextMessage(msg.str());
|
||||
}
|
||||
}
|
||||
|
||||
// Check for first PlusROM start
|
||||
if(myConsole->cartridge().isPlusROM())
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user