From df6b1c306f82897d96d401d62126fe12be30419c Mon Sep 17 00:00:00 2001 From: mahoneyt944 <49591133+mahoneyt944@users.noreply.github.com> Date: Tue, 19 Oct 2021 09:46:40 -0400 Subject: [PATCH] Log --- audio/drivers/opensl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/drivers/opensl.c b/audio/drivers/opensl.c index c5a8e59ad0..70f5846538 100644 --- a/audio/drivers/opensl.c +++ b/audio/drivers/opensl.c @@ -116,7 +116,7 @@ static void *sl_init(const char *device, unsigned rate, unsigned latency, if (!sl) goto error; - RARCH_LOG("[OpenSL]: Requested audio latency: %u ms.", latency); + RARCH_LOG("[OpenSL]: Requested audio latency: %u ms.\n", latency); GOTO_IF_FAIL(slCreateEngine(&sl->engine_object, 0, NULL, 0, NULL, NULL)); GOTO_IF_FAIL(SLObjectItf_Realize(sl->engine_object, SL_BOOLEAN_FALSE));