diff options
author | wiz <wiz> | 2008-06-21 18:38:00 +0000 |
---|---|---|
committer | wiz <wiz> | 2008-06-21 18:38:00 +0000 |
commit | e565f4960022ac8828a8d64c69416cbf94026094 (patch) | |
tree | f0b18da33dec6699ca73c85ed7020f48fc9281e3 /emulators/mednafen | |
parent | c7596c6795a0817831f63a885f09932c9be86ade (diff) | |
download | pkgsrc-e565f4960022ac8828a8d64c69416cbf94026094.tar.gz |
Update to 0.8.9:
0.8.9:
Updated the included gettext library to 0.17 to fix a MinGW build
issue.
GB: Corrected a lack of address masking in most of the cart RAM
emulation code. Fixes a few Chinese GameBoy Color games.
NES: (Re?)-added support for mapper 240(it was erroneously listed
in the documentation as being supported...).
GBA: Fixed a buffer overflow in the ROM image loading code.
PC-FX: Several variables related to subchannel reading weren't
being saved in save states. Fixed. (This fixes save states made
within the BIOS' CD-DA player)
PCE: Altered how the ADPCM read and write addresses are set.
Fixes the Super CD version of "Tengai Makyou Ziria", and "CD Mahjong
Bishoujo Chuushinha". Thanks to Exophase and ChrlyMac for the
tips. ***(This change may potentially cause regressions. If it
does, please report them at http://forum.fobby.net )***
PC-FX: Fixed a few deprecated const string to char* conversions
in v810_cpuD.cpp.
PCE: Fixed a bug with Arcade Card emulation with a tip from
Exophase. The ADPCM sound effects in Garou Densetsu II work
correctly now.
PCE: Reads from the timer count register the cycle it is set to
reload after expiring will now return 0x7F. Fixes "Battle Royale".
Diffstat (limited to 'emulators/mednafen')
-rw-r--r-- | emulators/mednafen/Makefile | 4 | ||||
-rw-r--r-- | emulators/mednafen/distinfo | 10 | ||||
-rw-r--r-- | emulators/mednafen/patches/patch-aa | 16 |
3 files changed, 15 insertions, 15 deletions
diff --git a/emulators/mednafen/Makefile b/emulators/mednafen/Makefile index febc3089cc8..c3a04645b4d 100644 --- a/emulators/mednafen/Makefile +++ b/emulators/mednafen/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2008/04/22 21:59:22 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2008/06/21 18:38:00 wiz Exp $ # -DISTNAME= mednafen-0.8.8 +DISTNAME= mednafen-0.8.9 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mednafen/} EXTRACT_SUFX= .tar.bz2 diff --git a/emulators/mednafen/distinfo b/emulators/mednafen/distinfo index b8f2539a8cf..2f30a445657 100644 --- a/emulators/mednafen/distinfo +++ b/emulators/mednafen/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2008/04/22 21:59:22 wiz Exp $ +$NetBSD: distinfo,v 1.5 2008/06/21 18:38:01 wiz Exp $ -SHA1 (mednafen-0.8.8.tar.bz2) = e84cd8205ff009f0a6b8095abc876bf35ae2acf2 -RMD160 (mednafen-0.8.8.tar.bz2) = 4e4679ec72f4d2b2b3b65a59adbf66022b4ce276 -Size (mednafen-0.8.8.tar.bz2) = 2397854 bytes -SHA1 (patch-aa) = 2d9f8b72f09bc20f0ef70e851d27c7beca46c2ea +SHA1 (mednafen-0.8.9.tar.bz2) = ae9285da64c534b6053bdd19b9da64a4a0c00b4f +RMD160 (mednafen-0.8.9.tar.bz2) = 333eebf28badd6780dff4cad5867f828c90a6283 +Size (mednafen-0.8.9.tar.bz2) = 2419548 bytes +SHA1 (patch-aa) = 1708aa37f9b871af36ed2731d1386502eecb8c51 diff --git a/emulators/mednafen/patches/patch-aa b/emulators/mednafen/patches/patch-aa index 04eed33b26e..6b3dd419b71 100644 --- a/emulators/mednafen/patches/patch-aa +++ b/emulators/mednafen/patches/patch-aa @@ -1,13 +1,13 @@ -$NetBSD: patch-aa,v 1.1.1.1 2007/05/19 12:39:30 wiz Exp $ +$NetBSD: patch-aa,v 1.2 2008/06/21 18:38:01 wiz Exp $ ---- po/Makefile.in.in.orig 2007-05-19 11:00:21.000000000 +0000 +--- po/Makefile.in.in.orig 2008-06-09 15:07:36.000000000 +0000 +++ po/Makefile.in.in -@@ -30,7 +30,7 @@ gettextsrcdir = $(datadir)/gettext/po - - INSTALL = @INSTALL@ - INSTALL_DATA = @INSTALL_DATA@ +@@ -39,7 +39,7 @@ INSTALL_DATA = @INSTALL_DATA@ + # In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined + # either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake + # versions, $(mkinstalldirs) and $(install_sh) are unused. -mkinstalldirs = $(SHELL) @install_sh@ -d +mkinstalldirs = @install_sh@ -d + install_sh = $(SHELL) @install_sh@ + MKDIR_P = @MKDIR_P@ mkdir_p = @mkdir_p@ - - GMSGFMT_ = @GMSGFMT@ |