diff options
author | frueauf <frueauf@pkgsrc.org> | 1999-06-07 08:19:48 +0000 |
---|---|---|
committer | frueauf <frueauf@pkgsrc.org> | 1999-06-07 08:19:48 +0000 |
commit | 557d2a614b3591e9f4ed17b7211a402f743537c8 (patch) | |
tree | 385512b2cc5bb4bc23b5ed278208bd25efa8966d /audio/sidplay/patches/patch-af | |
parent | 62a7f6a63ec25f1d81fa24e589f1d1b21e2fb99f (diff) | |
download | pkgsrc-557d2a614b3591e9f4ed17b7211a402f743537c8.tar.gz |
Add patches from Michael Schwendt <sidplay@geocities.com> to enable
ossaudio. Provided in pr 7693 by Antti Kantee.
Diffstat (limited to 'audio/sidplay/patches/patch-af')
-rw-r--r-- | audio/sidplay/patches/patch-af | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/audio/sidplay/patches/patch-af b/audio/sidplay/patches/patch-af new file mode 100644 index 00000000000..0567301fc29 --- /dev/null +++ b/audio/sidplay/patches/patch-af @@ -0,0 +1,16 @@ +$NetBSD: patch-af,v 1.4 1999/06/07 08:19:48 frueauf Exp $ + +--- console/sidplay.cpp.orig Sat Feb 20 14:54:00 1999 ++++ console/sidplay.cpp Wed Jun 2 20:06:29 1999 +@@ -339,7 +339,10 @@ + // Print the relevant settings. + if (verboseOutput) + { +- cout << "Frequency : " << dec << myEmuConfig.frequency << " Hz" << endl; ++ cout << "Frequency : " << dec << myEmuConfig.frequency << " Hz" ++ << " (" << ((myEmuConfig.bitsPerSample==SIDEMU_8BIT) ? "8" : "16") ++ << "-bit " << ((myEmuConfig.channels==SIDEMU_MONO) ? "mono" : "stereo") ++ << ")" << endl; + cout << "SID Filter : " << ((myEmuConfig.emulateFilter == true) ? "Yes" : "No") << endl; + if (myEmuConfig.memoryMode == MPU_PLAYSID_ENVIRONMENT) + { |