summaryrefslogtreecommitdiff
path: root/emulators/mame/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2021-02-24 15:39:30 +0000
committerwiz <wiz@pkgsrc.org>2021-02-24 15:39:30 +0000
commita1671a7d0c704ed199a94d46393828a9fb7c0207 (patch)
tree682a8819f09648604b38c50ec828496092aee412 /emulators/mame/patches
parent264a9c12d8f7da9042f5c137c825b31a0469b689 (diff)
downloadpkgsrc-a1671a7d0c704ed199a94d46393828a9fb7c0207.tar.gz
mame: update to 0.229.
It’s been an eventful month, culminating in the release of MAME 0.229 today. One change that you’ll notice straight away is that the “64” suffix is no longer added to the file name for 64-bit versions of MAME. If you’re unsure, you can see the data model at the end of the window title. One very elusive Argentinian title has finally made it into MAME this month. We’re very proud to present Ms PacMan Twin, an extensive hack of Ms. Pac-Man with simultaneous two-player cooperative gameplay. Another rarity you can now experience is Midway’s unreleased Power Up Baseball – the NBA Jam of baseball. On the topic of prototypes, Wayne Gretzky’s 3D Hockey Fatality Edition is now supported. Several TV games for preschool age children from JAKKS Pacific’s Sharp Cookie line have been dumped and emulated, featuring popular characters like Dora the Explorer, Scooby-Doo, Spider-Man and Thomas the Tank Engine. Travelling back a little, Mattel’s representations of Basketball, Hockey, Soccer, and Tag as electronic toys are now supported. Elektronika Autoslalom has arrived from Russia (with love). Another batch of JPM IMPACT fruit machines have been promoted to working this month, making use of new artwork engine features for their internal layouts. Updates to the Win32 and Qt debuggers add a context menu to debugger views with an option to copy visible text to the clipboard, improve behaviour when views are scrolled to the bottom, and fix a crash when right-clicking some memory views. We’re lucky enough to have received another shader update from cgwg, improving the appearance of the popular crt-geom and crt-geom-deluxe effects. We’ve added support for the NEC/Renesas V850 family to unidasm. That’s all we’ve got time for here, but there are lots of software list updates, newly dumped bootlegs, bug fixes, and other enhancements.
Diffstat (limited to 'emulators/mame/patches')
-rw-r--r--emulators/mame/patches/patch-src_osd_modules_lib_osdlib__unix.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/emulators/mame/patches/patch-src_osd_modules_lib_osdlib__unix.cpp b/emulators/mame/patches/patch-src_osd_modules_lib_osdlib__unix.cpp
deleted file mode 100644
index 68650da0ef7..00000000000
--- a/emulators/mame/patches/patch-src_osd_modules_lib_osdlib__unix.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-src_osd_modules_lib_osdlib__unix.cpp,v 1.1 2021/01/27 17:06:06 wiz Exp $
-
-Prepare mmap'd page for later mprotect().
-https://github.com/mamedev/mame/issues/7712
-
---- src/osd/modules/lib/osdlib_unix.cpp.orig 2021-01-26 04:43:24.000000000 +0000
-+++ src/osd/modules/lib/osdlib_unix.cpp
-@@ -189,7 +189,11 @@ void *virtual_memory_allocation::do_allo
- // TODO: portable applications are supposed to use -1 for anonymous mappings - detect whatever requires 0 specifically
- int const fd(0);
- #endif
-+#ifdef __NetBSD__
-+ void *const result(mmap(nullptr, s, PROT_MPROTECT(PROT_EXEC|PROT_WRITE|PROT_READ), MAP_ANON | MAP_SHARED, fd, 0));
-+#else
- void *const result(mmap(nullptr, s, PROT_NONE, MAP_ANON | MAP_SHARED, fd, 0));
-+#endif
- if (result == (void *)-1)
- return nullptr;
- size = s;