summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2010-02-11 09:44:23 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2010-02-11 09:44:23 +0000
commita8aedb92b0ae23d4f3e0f6dd25fdd69c2ff28092 (patch)
tree3a8c19facd6c35f46d2f93d7abd07cd0b8a721b1 /src/emu/ui.c
parentf58ac32efe49f439ca4b35fc441d49a74f121dee (diff)
- Renamed GAME_COMPUTER_MODIFIED to GAME_UNOFFICIAL to mark unofficial hardware modifications
- Removed GAME_COMPUTER it is distinct by IPT_KEYBOARD - Added GAME_NO_SOUND_HW (to mark that there is no sound hardware) and marked drivers in dotrikun.c, minivadr.c and tgtpanic.c as such - Added GAME_CAN_SHARE_ROMS - to mark that there can be other driver using same ROM as this one but with different hardware (common in computer/console world)
Diffstat (limited to 'src/emu/ui.c')
-rw-r--r--src/emu/ui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/ui.c b/src/emu/ui.c
index 3fd8581f5fb..c66f6fda0f4 100644
--- a/src/emu/ui.c
+++ b/src/emu/ui.c
@@ -879,8 +879,8 @@ static astring &warnings_string(running_machine *machine, astring &string)
string.cat("There are known problems with this " GAMENOUN "\n\n");
/* add one line per warning flag */
- if (machine->gamedrv->flags & GAME_COMPUTER)
- string.cat("The emulated system is a computer:\n\nThe keyboard emulation may not be 100% accurate.\n");
+ if (input_machine_have_keyboard(machine))
+ string.cat("The keyboard emulation may not be 100% accurate.\n");
if (machine->gamedrv->flags & GAME_IMPERFECT_COLORS)
string.cat("The colors aren't 100% accurate.\n");
if (machine->gamedrv->flags & GAME_WRONG_COLORS)