diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-11-20 06:47:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-11-20 06:47:32 +0000 |
commit | 36d7973acb92dfb263069f75238920395834ebbe (patch) | |
tree | e9ac597e6cfc9e97a09b5e7e06a8263dc3335fed /games-emulation/xmame/files | |
parent | Dont abort if tetex isnt installed #113023 by James Cave. (diff) | |
download | historical-36d7973acb92dfb263069f75238920395834ebbe.tar.gz historical-36d7973acb92dfb263069f75238920395834ebbe.tar.bz2 historical-36d7973acb92dfb263069f75238920395834ebbe.zip |
add keyboard patch from xmess
Package-Manager: portage-2.0.53_rc7
Diffstat (limited to 'games-emulation/xmame/files')
-rw-r--r-- | games-emulation/xmame/files/xmame-0.101-keyboard.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/games-emulation/xmame/files/xmame-0.101-keyboard.patch b/games-emulation/xmame/files/xmame-0.101-keyboard.patch new file mode 100644 index 000000000000..f9ebd3652624 --- /dev/null +++ b/games-emulation/xmame/files/xmame-0.101-keyboard.patch @@ -0,0 +1,13 @@ +diff -ru a/src/usrintrf.c b/src/usrintrf.c +--- a/src/usrintrf.c 2005-10-22 13:37:29.000000000 -0700 ++++ b/src/usrintrf.c 2005-10-28 00:11:20.296156336 -0700 +@@ -1219,7 +1219,8 @@ + #ifdef MESS + if (osd_trying_to_quit()) + return 1; +- if (options.disable_normal_ui || !mess_ui_active()) ++ if (options.disable_normal_ui || ++ ((Machine->gamedrv->flags & GAME_COMPUTER) && !mess_ui_active())) + return 0; + #endif + |