summaryrefslogtreecommitdiff
path: root/src/audio.h
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2026-06-26 14:46:30 +0100
committerIan C <ianc@noddybox.co.uk>2026-06-26 14:46:30 +0100
commitc31b779c20638ce25f11489c445a53798a663b13 (patch)
treedd4b3b423369d1ee25664221fa0f525002ea9414 /src/audio.h
parentfe0ec0f56d2679f52bd68273b058f3c081b20972 (diff)
Fixed bad header guard on audio.h
Diffstat (limited to 'src/audio.h')
-rw-r--r--src/audio.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/audio.h b/src/audio.h
index fb972ea..83980e4 100644
--- a/src/audio.h
+++ b/src/audio.h
@@ -24,8 +24,8 @@
*/
-#ifndef ESPEC_TAPE_H
-#define ESPEC_TAPE_H
+#ifndef ESPEC_AUDIO_H
+#define ESPEC_AUDIO_H
#include <stdlib.h>
@@ -38,6 +38,7 @@
*/
int AUDIOInit(void);
+
/* Add the passed buffer to the sound queue. It is a signed 8-bit mono
sample which will be converted as appropriate by the audio interface.
*/