summaryrefslogtreecommitdiff
path: root/emulators/snes9x-gtk/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2010-02-05 12:57:27 +0000
committerwiz <wiz@pkgsrc.org>2010-02-05 12:57:27 +0000
commit69d7106d7ba77e415c6758e12cce2da9658b0292 (patch)
tree834fb65f908ebf326a454d0a6d5f4d5078992f59 /emulators/snes9x-gtk/patches
parent9eb71b5a8d98f63dcf756a1598b85e39c34c5b1d (diff)
downloadpkgsrc-69d7106d7ba77e415c6758e12cce2da9658b0292.tar.gz
Update to 1.52.79. GTK port has been integrated into main
snes9x version. Snes9x 1.52 - IMPORTANT NOTICE: The structure of savestates (also known as snapshots / freeze files) is incompatible with older versions! Snes9x 1.52 cannot read the savestates created by 1.51 or older. (zones) - Highly acculate SPC700 and S-DSP emulation. (Blargg) - Replaced APU emulation cores (SPC700 and S-DSP) with ones provided by Blargg's SNES_SPC library. This renders savestates incompatible with older versions. (BearOso, zones) - SPC7110 emulation. (byuu, neviksti) - Merged bsnes' SPC7110 emulation code. Note that the .rtc file of Far East of Eden Zero is incompatible with older versions. (zones) - Removed graphics pack support. It's no more necessary. (zones) - Replaced S-RTC emulation code with bsnes' one to keep the good compatibility of .rtc files between the two emulators. As a result, Daikaijuu Monogatari 2 now outputs the .rtc file, and its .srm file is incompatible with older versions. (zones) - Added savestate supports for DSP-2, DSP-4, ST-010 and OBC1. (zones) - Added UPS support. (byuu) - Fixed DSP-4 AI problem. (Jonas Quinn) - Fixed invalid memory accesses in C4 and OBC1 codes. (zones) - Fixed invalid memory accesses in BSX codes. My mistake. (zones) - Fixed the read value of $213e, $4210 and $4211. (zones) - Fixed the writing of word values at the memory boundary. (zones) - Fixed the bug that the unnecessary SA-1 emulation continues once any SA-1 games are launched. (zones) - Removed old color blending codes. (zones) - Removed too-old Snes96 and ZSNES snapshot support. (zones) - Updated command-line options. (zones) - Code cleaning. (zones) - GTK+ : Added a port of Snes9x to the GTK+ toolkit. (BearOso) - Unix : Reconstructed and simplified all the contents. Some features have been removed to be simple, and many options have changed. GTK+ port is recommended for most of Linux users. (zones)
Diffstat (limited to 'emulators/snes9x-gtk/patches')
-rw-r--r--emulators/snes9x-gtk/patches/patch-aa12
1 files changed, 6 insertions, 6 deletions
diff --git a/emulators/snes9x-gtk/patches/patch-aa b/emulators/snes9x-gtk/patches/patch-aa
index e925c5f1826..f0f6ecf8a8e 100644
--- a/emulators/snes9x-gtk/patches/patch-aa
+++ b/emulators/snes9x-gtk/patches/patch-aa
@@ -1,13 +1,13 @@
-$NetBSD: patch-aa,v 1.1 2009/04/06 10:11:47 wiz Exp $
+$NetBSD: patch-aa,v 1.2 2010/02/05 12:57:27 wiz Exp $
---- src/gtk_sound_driver_oss.cpp.orig 2009-03-13 12:34:50.000000000 +0000
+--- src/gtk_sound_driver_oss.cpp.orig 2009-11-30 22:37:11.000000000 +0000
+++ src/gtk_sound_driver_oss.cpp
-@@ -145,7 +145,7 @@ S9xOSSSoundDriver::open_device (int mode
+@@ -125,7 +125,7 @@ S9xOSSSoundDriver::open_device (void)
printf ("OK\n");
- printf (" --> (Frequency: %d)...", so.playback_rate);
-- if (ioctl (filedes, SNDCTL_DSP_SPEED, &so.playback_rate) < 0)
-+ if (ioctl (filedes, SNDCTL_DSP_SPEED, (void*)&so.playback_rate) < 0)
+ printf (" --> (Frequency: %d)...", Settings.SoundPlaybackRate);
+- if (ioctl (filedes, SNDCTL_DSP_SPEED, &Settings.SoundPlaybackRate) < 0)
++ if (ioctl (filedes, SNDCTL_DSP_SPEED, (void *)&Settings.SoundPlaybackRate) < 0)
goto close_fail;
printf ("OK\n");