summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2022-10-04 16:29:26 +0200
committer hap <happppp@users.noreply.github.com>2022-10-04 16:29:26 +0200
commit49d421177c5d64f08428457cf4d3c5d271439eb4 (patch)
tree0ebb8c862e96a9b6bd4d56bdd39a0bb8bff779ff /src/frontend/mame
parentdc51bb6541f37f26dec1960aef4f53f80e1ddedd (diff)
armchamp/armchmp2: match not-working and mechanical flags:
armchamp has preliminary arm input/motor emulation like armchmp2 making it borderline playable, and armchmp2 has a mechanical arm like armchamp ui/info: reword mechanical "cannot be emulated" to "cannot be emulated accurately" as often times we do crudely emulate mechanical elements
Diffstat (limited to 'src/frontend/mame')
-rw-r--r--src/frontend/mame/ui/info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/info.cpp b/src/frontend/mame/ui/info.cpp
index 5c031d1fe01..e2d1435b1ba 100644
--- a/src/frontend/mame/ui/info.cpp
+++ b/src/frontend/mame/ui/info.cpp
@@ -142,7 +142,7 @@ void get_system_warnings(std::ostream &buf, running_machine &machine, machine_fl
if (flags & ::machine_flags::NOT_WORKING)
buf << _("\nTHIS SYSTEM DOESN'T WORK. The emulation for this system is not yet complete. There is nothing you can do to fix this problem except wait for the developers to improve the emulation.\n");
if (flags & ::machine_flags::MECHANICAL)
- buf << _("\nElements of this system cannot be emulated as they require physical interaction or consist of mechanical devices. It is not possible to fully experience this system.\n");
+ buf << _("\nElements of this system cannot be emulated accurately as they require physical interaction or consist of mechanical devices. It is not possible to fully experience this system.\n");
if ((flags & MACHINE_ERRORS) || ((machine.system().type.unemulated_features() | machine.system().type.imperfect_features()) & device_t::feature::PROTECTION))
{