mirror of
https://github.com/bradgrantham/apple2e.git
synced 2024-11-12 12:08:23 +00:00
use 1000Hz as audio cutoff
This commit is contained in:
parent
ab5ee6f1db
commit
bbf62836b3
@ -451,7 +451,7 @@ struct DISKIIboard : board_base
|
|||||||
virtual void reset(void) {}
|
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;
|
const float waveform_max_amplitude = .35f;
|
||||||
static unsigned char waveform[waveform_length];
|
static unsigned char waveform[waveform_length];
|
||||||
|
|
||||||
@ -2382,7 +2382,7 @@ void cleanup(void)
|
|||||||
fflush(stderr);
|
fflush(stderr);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool use_fake6502 = false;
|
bool use_fake6502 = true;
|
||||||
|
|
||||||
struct saved_inst {
|
struct saved_inst {
|
||||||
int pc;
|
int pc;
|
||||||
|
Loading…
Reference in New Issue
Block a user