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
73ac91b624
commit
badb41c4ed
|
@ -414,7 +414,7 @@ string OSystem::createConsole(const FilesystemNode& rom, const string& md5sum,
|
||||||
}
|
}
|
||||||
catch(const runtime_error& e)
|
catch(const runtime_error& e)
|
||||||
{
|
{
|
||||||
buf << "ERROR: Couldn't create console (" << e.what() << ")";
|
buf << "ERROR: " << e.what();
|
||||||
Logger::error(buf.str());
|
Logger::error(buf.str());
|
||||||
return buf.str();
|
return buf.str();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue