From bbf62836b3dad6a8cc247fb7c6bca04bde1320d1 Mon Sep 17 00:00:00 2001 From: Brad Grantham Date: Wed, 7 Dec 2016 14:42:28 -0800 Subject: [PATCH] use 1000Hz as audio cutoff --- apple2e.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apple2e.cpp b/apple2e.cpp index 785223d..a2e6ab9 100644 --- a/apple2e.cpp +++ b/apple2e.cpp @@ -451,7 +451,7 @@ struct DISKIIboard : board_base virtual void reset(void) {} }; -const int waveform_length = 44100 / 500 / 2; // half of a wave at 4000 Hz +const int waveform_length = 44100 / 1000 / 2; // half of a wave at 4000 Hz const float waveform_max_amplitude = .35f; static unsigned char waveform[waveform_length]; @@ -2382,7 +2382,7 @@ void cleanup(void) fflush(stderr); } -bool use_fake6502 = false; +bool use_fake6502 = true; struct saved_inst { int pc;