summaryrefslogtreecommitdiff
path: root/audio/sidplay/patches/patch-af
blob: 0567301fc29e8348c90f8063449e646a5edcf043 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
 		{