From af5c9e1b8b910d28ad1ffd390538ee8c690526a1 Mon Sep 17 00:00:00 2001 From: Mike H Date: Sat, 3 Mar 2018 18:13:23 +0000 Subject: [PATCH] Add explanatory comment --- audio/echo/source/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/audio/echo/source/main.c b/audio/echo/source/main.c index 41683d3..9dc087c 100644 --- a/audio/echo/source/main.c +++ b/audio/echo/source/main.c @@ -5,6 +5,10 @@ #include +// Example for audio capture and playback. +// This example continuously records audio data from the default input device (see libnx audin.h), +// and sends it to the default audio output device (see libnx audout.h). + #define SAMPLERATE 48000 #define CHANNELCOUNT 2 #define FRAMERATE (1000 / 30)