Previous 199869 Revisions Next

r44397 Sunday 24th January, 2016 at 00:36:01 UTC by Angelo Salese
Print messages for BTANBs, nw
[src/emu/ui]ui.cpp

trunk/src/emu/ui/ui.cpp
r252908r252909
10191019                  MACHINE_IMPERFECT_SOUND |  \
10201020                  MACHINE_IMPERFECT_GRAPHICS | \
10211021                  MACHINE_IMPERFECT_KEYBOARD | \
1022                  MACHINE_NO_COCKTAIL)
1022                  MACHINE_NO_COCKTAIL| \
1023                  MACHINE_IS_INCOMPLETE| \
1024                  MACHINE_NO_SOUND_HW )
10231025
10241026   str.clear();
10251027
r252908r252909
10831085         str.append(" requires external artwork files\n");
10841086      }
10851087
1088      if (machine().system().flags & MACHINE_IS_INCOMPLETE )
1089      {
1090         str.append("This ");
1091         str.append(emulator_info::get_gamenoun());
1092         str.append(" was never completed. It may exhibit strange behavior or missing elements that are not bugs in the emulation.\n");
1093      }
1094     
1095      if (machine().system().flags & MACHINE_NO_SOUND_HW )
1096      {
1097         str.append("This ");
1098         str.append(emulator_info::get_gamenoun());
1099         str.append(" has no sound hardware, MAME will produce no sounds, this is expected behaviour.\n");
1100      }
1101     
10861102      // if there's a NOT WORKING, UNEMULATED PROTECTION or GAME MECHANICAL warning, make it stronger
10871103      if (machine().system().flags & (MACHINE_NOT_WORKING | MACHINE_UNEMULATED_PROTECTION | MACHINE_MECHANICAL))
10881104      {


Previous 199869 Revisions Next


© 1997-2024 The MAME Team