diff options
author | 2016-01-27 08:12:00 +0100 | |
---|---|---|
committer | 2016-01-27 08:12:00 +0100 | |
commit | b1d6f6d63f8294a3f62d7db6f9eea07da1d93664 (patch) | |
tree | 10258b6f255e00e7eec2ec30112d6de07015c475 /src/emu/ui/ui.cpp | |
parent | 9425c141de76ef9ee178af80731110e228fa89bb (diff) |
Cleanups and version bumpmame0170
Diffstat (limited to 'src/emu/ui/ui.cpp')
-rw-r--r-- | src/emu/ui/ui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/ui/ui.cpp b/src/emu/ui/ui.cpp index 8175df2871e..3f2d252c107 100644 --- a/src/emu/ui/ui.cpp +++ b/src/emu/ui/ui.cpp @@ -1091,14 +1091,14 @@ std::string &ui_manager::warnings_string(std::string &str) str.append(emulator_info::get_gamenoun()); str.append(" was never completed. It may exhibit strange behavior or missing elements that are not bugs in the emulation.\n"); } - + if (machine().system().flags & MACHINE_NO_SOUND_HW ) { str.append("This "); str.append(emulator_info::get_gamenoun()); str.append(" has no sound hardware, MAME will produce no sounds, this is expected behaviour.\n"); } - + // if there's a NOT WORKING, UNEMULATED PROTECTION or GAME MECHANICAL warning, make it stronger if (machine().system().flags & (MACHINE_NOT_WORKING | MACHINE_UNEMULATED_PROTECTION | MACHINE_MECHANICAL)) { |