From 3b7a652616cb7449b72e61ac4826fc7eebe9ebc2 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Mon, 7 Mar 2022 23:55:09 -0800 Subject: [PATCH] dont know how that happened --- main/vcr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main/vcr.c b/main/vcr.c index 22859ade..2387053a 100644 --- a/main/vcr.c +++ b/main/vcr.c @@ -1889,7 +1889,7 @@ VCR_updateScreen() if (audio_frames < 0) { - printError("Audio frames became negative!\n"); + printError("Audio frames became negative!"); VCR_stopCapture(); } @@ -1897,7 +1897,7 @@ VCR_updateScreen() { if (audio_frames == 0) { - printf("\Dropped Frame! a/v: %f/%f\n", m_videoFrame, m_audioFrame); + printf("\nDropped Frame! a/v: %f/%f", m_videoFrame, m_audioFrame); } else if (audio_frames > 0) { @@ -1923,7 +1923,7 @@ VCR_updateScreen() } else { - printf("\Duped Frame! a/v: %f/%f\n", m_videoFrame, m_audioFrame); + printf("\nDuped Frame! a/v: %f/%f", m_videoFrame, m_audioFrame); m_videoFrame += 1.0; audio_frames--; }