mirror of https://github.com/stella-emu/stella.git
Shorten error messages in ROM launcher, to fix overflow of buffer width.
This commit is contained in:
parent
c622e1f109
commit
ce3c9b9e8a
|
@ -414,7 +414,7 @@ string OSystem::createConsole(const FilesystemNode& rom, const string& md5sum,
|
|||
}
|
||||
catch(const runtime_error& e)
|
||||
{
|
||||
buf << "ERROR: Couldn't create console (" << e.what() << ")";
|
||||
buf << "ERROR: " << e.what();
|
||||
Logger::error(buf.str());
|
||||
return buf.str();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue