summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorwiz <wiz>2009-10-31 01:56:36 +0000
committerwiz <wiz>2009-10-31 01:56:36 +0000
commit1264b6f11be63a116087a0039a2b0b7f187f089f (patch)
treee07b285b57c8ca91f4db7883e3677d14f76c610e /emulators
parent7eb5395a03d1020c49a63c3ed415f6e4defb1ada (diff)
downloadpkgsrc-1264b6f11be63a116087a0039a2b0b7f187f089f.tar.gz
Update to 0.8.C/0.8.12:
0.8.C: SMS: Fixed the input and reset emulation when the territory was set to "domestic"(Japan) and FM emulation was enabled; the emulated system was erroneously being treated as a Game Gear in a few places when those conditions were met. GB: Fixed initialization of "HRAM" on virtual power toggle/reset. GB: Fixed a bug(still many left) in the external RAM handling code, fixing an emulator crash with "Wizards & Warriors - Chapter X". 0.8.C-rc1: NGP: Fixed an unaligned memory access bug in the memory r/w handlers, causing crashes on platforms that do not support unaligned memory accesses. NES: Fixed an intialization bug in mapper 193. Added define "ALWAYS_INLINE" to force the compiler to always inline speed-critical functions, and added it to many emulation functions in that category. gcc can be a pain in the butt. GBA: Fixed a bug that would cause data corruption and the loaded game to crash whenever a state was saved(but the state itself, and loading it, was fine) on a big-endian platform. Fixed several instances of mismatches between format strings and passed argument types, which could cause nonsensical information to be printed on big-endian platforms, and perhaps some little-endian platforms as well. Fixed the minimum field-width specifier on the statements that print the loaded game's CRC32 in several places. Added the "format(...)" function attribute to the MDFN_DispMessage(), MDFN_PrintError(), and MDFN_printf() function prototypes to catch format string errors. Fixed the order of the sound drivers in the documentation(it was erroneously implying that OSS had a higher priority than ALSA for the default sound driver), and added various notes to explain the sound drivers. If an invalid "sounddriver" is selected, Mednafen will now print an error message and not initialize sound instead of silently selecting the default sound driver. SexyAL: Altered the argument order of SexiALI_Convert() to make more sense. Fixed the broken conversion code used when the frame count passed to Write() is greater than 2048. Fixed a bug/design flaw in the SexyAL SDL sound driver that can cause a crash during program deinitialization. Added support for "float" output format to the ALSA driver. The ALSA driver will now try all formats that SexyAL's conversion code supports if the desired format is not supported by the output device, rather that simply erroring out as before. Added support for converting to 24-bit and 32-bit PCM output formats from the source format(which is still fixed to signed 16-bit). The driver function RawCanWrite() is now passed a pointer to a uint32_t, which it sets to the number of bytes that can be written without blocking, rather than returning the value directly, so that the return value can be used as a success/failure indicator. The driver function RawWrite(), and the "user" function Write(), will now return 1 on success, 0 on (fatal) error, rather than returning the amount of data written. The OSS driver was testing the return value of open() incorrectly. Fixed. SexyAL is now compiled as C++(but doesn't use many C++ features yet), which necessitated adding several explicit casts in various code, and fixing some inconsistent function prototypes and declarations. JACK: Fixed a stereo playback crashing problem(a loop count was being calculated incorrectly). JACK: Switched to using jack_client_open() instead of the deprecated jack_client_new(). JACK: The "sounddevice" setting is now used, to specify the JACK server to connect to. JACK: Fixed a possible race condition in RawCanWrite(). JACK, SDL: Changed the inter-thread ringbuffer setup to be less likely to underrun, while not hurting latency. JACK, SDL: Additional playback position precision is now obtained by using jack_get_time()/SDL_GetTicks(). This will improve Mednafen's performance with larger fragment sizes with these drivers, but smaller fragment sizes are still preferred for latency-to-underrun-occurrence-ratio reasons. Renamed the "byteorder" field of SexyAL_format to "revbyteorder", and changed it to a boolean type, to avoid confusion over what it actually represents. Removed erroneous dependency on CD-ROM emulation when WonderSwan emulation is enabled in the configure script. Added sanity checks to the first track number and total track count returned from libcdio, to prevent a crash in Mednafen if the libcdio driver fails and returns nonsensical values. Removed unused file sms/state.h Fixed a very-old bug that caused joystick unique ID collisions if more than 2 of the same "type" of physical joystick were available. Fixed a string constant-to-(char *) problem in sms/romdb.h. Mednafen is now compiled with -fsigned-char, to prevent any potential problems on systems with an "unsigned" char type as default. The included Tremor is now compiled with "-fvisibility=hidden" to work around a dynamic symbol collision problem with libsndfile(BUT, -fvisibility is only available in gcc 4.0 and newer). This solution may not be correct... Updated Tremor to the latest SVN version. PC-FX: Added a semi-hack to fix a missing background layer problem in parts of "Angelique Special". The underlying problem(no emulation of the programmable BG0 subscreen) will be corrected in 0.9.0. PC-FX: Removed the unused V810 cache structures(Mednafen 0.9.0 will feature cache emulation, however). PC-FX: Added a few CPU variables to save states whose absence could have caused netplay/movie desynch. PCE: Fixed virtual power-toggle initialization of VCE and gamepad input variables. PCE, PC-FX: Fixed the emulation of SCSI command 0xDE, mode 0x1. The value returned was too small by 2 seconds. PCE, PC-FX: Fixed the sector count for the last track(which influences the leadout track start position/total sector count) in multi-track CUE/BIN CDROM images. PC-FX: Fixed the handler address called when a TRAP instruction is executed. PC-FX: Fixed the exception code set when an FPU divide-by-zero occurs(previously, it was being set to the integer divide-by-zero exception code). Fixed several problems in file.cpp, including buggy and overly-complicated MDFN_read*le() functions, and a problem with the const-ness of the return value of strrchr() with gcc 4.4.
Diffstat (limited to 'emulators')
-rw-r--r--emulators/mednafen/Makefile10
-rw-r--r--emulators/mednafen/distinfo8
2 files changed, 9 insertions, 9 deletions
diff --git a/emulators/mednafen/Makefile b/emulators/mednafen/Makefile
index efaac0cff05..dc6dd9f6ba3 100644
--- a/emulators/mednafen/Makefile
+++ b/emulators/mednafen/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.10 2009/02/25 13:16:47 wiz Exp $
+# $NetBSD: Makefile,v 1.11 2009/10/31 01:56:36 wiz Exp $
#
-DISTNAME= mednafen-0.8.B
-PKGNAME= mednafen-0.8.11
+DISTNAME= mednafen-0.8.C
+PKGNAME= mednafen-0.8.12
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mednafen/}
EXTRACT_SUFX= .tar.bz2
@@ -10,6 +10,7 @@ EXTRACT_SUFX= .tar.bz2
MAINTAINER= wiz@NetBSD.org
HOMEPAGE= http://mednafen.sourceforge.net/
COMMENT= Portable multi-system emulator
+LICENSE= gnu-gpl-v2
WRKSRC= ${WRKDIR}/mednafen
GNU_CONFIGURE= yes
@@ -23,8 +24,7 @@ INSTALLATION_DIRS= share/doc/mednafen
SUBST_CLASSES+= dsp
SUBST_STAGE.dsp= pre-configure
SUBST_MESSAGE.dsp= Fixing path to audio device.
-SUBST_FILES.dsp= src/sexyal/drivers/esd.c src/sexyal/drivers/oss.c \
- src/sexyal/drivers/oss.c src/sexyal/sexyal.c
+SUBST_FILES.dsp= src/sexyal/drivers/oss.cpp src/sexyal/sexyal.cpp
SUBST_SED.dsp= -e s,/dev/dsp,${DEVOSSAUDIO},
post-install:
diff --git a/emulators/mednafen/distinfo b/emulators/mednafen/distinfo
index 5e4bf863c83..00c20a9dbc1 100644
--- a/emulators/mednafen/distinfo
+++ b/emulators/mednafen/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.7 2009/02/25 13:16:47 wiz Exp $
+$NetBSD: distinfo,v 1.8 2009/10/31 01:56:36 wiz Exp $
-SHA1 (mednafen-0.8.B.tar.bz2) = b19907df4620d1087d75a3f91382d0ea8dc6997d
-RMD160 (mednafen-0.8.B.tar.bz2) = ae4cff9bed326e71b288cf3f86163379a54607db
-Size (mednafen-0.8.B.tar.bz2) = 2414246 bytes
+SHA1 (mednafen-0.8.C.tar.bz2) = 1ac99a1845e4d339c07072a78de287102db24c72
+RMD160 (mednafen-0.8.C.tar.bz2) = 0d37d11937f05b9633483139a817d72496a1ba43
+Size (mednafen-0.8.C.tar.bz2) = 2479077 bytes
SHA1 (patch-aa) = 1708aa37f9b871af36ed2731d1386502eecb8c51