From 2ea85815f6fcaa23e94a86da6e44b351dd9454a2 Mon Sep 17 00:00:00 2001 From: Andrew Alderwick Date: Tue, 13 Apr 2021 21:50:49 +0100 Subject: [PATCH] Changed audio sample frequency to 44.1 kHz --- src/apu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apu.h b/src/apu.h index cfbe754..522c9af 100644 --- a/src/apu.h +++ b/src/apu.h @@ -13,7 +13,7 @@ WITH REGARD TO THIS SOFTWARE. typedef unsigned int Uint32; typedef signed int Sint32; -#define SAMPLE_FREQUENCY 48000 +#define SAMPLE_FREQUENCY 44100 typedef struct { Uint16 *dat;