mirror of https://github.com/stella-emu/stella.git
fix #314
This commit is contained in:
parent
5da17e892a
commit
f726ad0206
|
@ -361,7 +361,7 @@ void FrameBuffer::showMessage(const string& message, MessagePosition position,
|
|||
bool force)
|
||||
{
|
||||
// Only show messages if they've been enabled
|
||||
if(!(force || myOSystem.settings().getBool("uimessages")))
|
||||
if(myMsg.surface == NULL || !(force || myOSystem.settings().getBool("uimessages")))
|
||||
return;
|
||||
|
||||
// Precompute the message coordinates
|
||||
|
|
Loading…
Reference in New Issue