mirror of
https://github.com/holub/mame
synced 2025-05-29 00:53:09 +03:00
initialisation (nw)
This commit is contained in:
parent
22d80b3529
commit
f34400310f
@ -129,7 +129,7 @@ std::string machine_info::warnings_string() const
|
||||
if (m_unemulated_features)
|
||||
{
|
||||
buf << _("Completely unemulated features: ");
|
||||
bool first = false;
|
||||
bool first = true;
|
||||
for (auto const &feature : FEATURE_NAMES)
|
||||
{
|
||||
if (m_unemulated_features & feature.first)
|
||||
@ -145,7 +145,7 @@ std::string machine_info::warnings_string() const
|
||||
if (m_imperfect_features)
|
||||
{
|
||||
buf << _("Imperfectly emulated features: ");
|
||||
bool first = false;
|
||||
bool first = true;
|
||||
for (auto const &feature : FEATURE_NAMES)
|
||||
{
|
||||
if (m_imperfect_features & feature.first)
|
||||
|
Loading…
Reference in New Issue
Block a user