mirror of
https://github.com/holub/mame
synced 2025-06-05 12:26:35 +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)
|
if (m_unemulated_features)
|
||||||
{
|
{
|
||||||
buf << _("Completely unemulated features: ");
|
buf << _("Completely unemulated features: ");
|
||||||
bool first = false;
|
bool first = true;
|
||||||
for (auto const &feature : FEATURE_NAMES)
|
for (auto const &feature : FEATURE_NAMES)
|
||||||
{
|
{
|
||||||
if (m_unemulated_features & feature.first)
|
if (m_unemulated_features & feature.first)
|
||||||
@ -145,7 +145,7 @@ std::string machine_info::warnings_string() const
|
|||||||
if (m_imperfect_features)
|
if (m_imperfect_features)
|
||||||
{
|
{
|
||||||
buf << _("Imperfectly emulated features: ");
|
buf << _("Imperfectly emulated features: ");
|
||||||
bool first = false;
|
bool first = true;
|
||||||
for (auto const &feature : FEATURE_NAMES)
|
for (auto const &feature : FEATURE_NAMES)
|
||||||
{
|
{
|
||||||
if (m_imperfect_features & feature.first)
|
if (m_imperfect_features & feature.first)
|
||||||
|
Loading…
Reference in New Issue
Block a user