diff options
author | wiz <wiz@pkgsrc.org> | 2000-08-10 11:56:32 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2000-08-10 11:56:32 +0000 |
commit | 6369a4ed4f35c4c0bb788ef0065d2574205f281b (patch) | |
tree | 7c35cc6cf62c4036d186dd1a0d1d9b766c6da677 /emulators/darcnes/patches | |
parent | 140cfe94ccbece73872b5ce981d10780924e556d (diff) | |
download | pkgsrc-6369a4ed4f35c4c0bb788ef0065d2574205f281b.tar.gz |
Update darcnes to 9a0804.
Changes since last version:
o Changed the cpu6502 core to use lazy flag evaluation.
o Changed the NES PPU to draw sprites from the tilecache.
o Added a bitdepth-independant generic palette system.
o Added CD audio playback to the PCD CD driver.
Diffstat (limited to 'emulators/darcnes/patches')
-rw-r--r-- | emulators/darcnes/patches/patch-af | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/emulators/darcnes/patches/patch-af b/emulators/darcnes/patches/patch-af new file mode 100644 index 00000000000..b4e5b2aff27 --- /dev/null +++ b/emulators/darcnes/patches/patch-af @@ -0,0 +1,20 @@ +$NetBSD: patch-af,v 1.3 2000/08/10 11:56:34 wiz Exp $ + +--- cd_unix.c.orig Sat Aug 5 03:43:04 2000 ++++ cd_unix.c Thu Aug 10 13:49:33 2000 +@@ -62,7 +62,6 @@ + + void cd_play(u32 from, u32 to, int repeat) + { +-#ifdef SYSTEM_FREEBSD + struct ioc_play_blocks playblocks; + + /* FIXME: ignores the repeat flag */ +@@ -77,7 +76,6 @@ + playblocks.len = to - from; + + ioctl(cd_drive, CDIOCPLAYBLOCKS, &playblocks); +-#endif + } + + #ifdef SYSTEM_LINUX |