Skip to content

Commit

Permalink
dont know how that happened
Browse files Browse the repository at this point in the history
  • Loading branch information
CasualPokePlayer committed Mar 8, 2022
1 parent 9d7d3aa commit 3b7a652
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main/vcr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1889,15 +1889,15 @@ VCR_updateScreen()

if (audio_frames < 0)
{
printError("Audio frames became negative!\n");
printError("Audio frames became negative!");
VCR_stopCapture();
}

if (Config.SyncMode == VCR_SYNC_AUDIO_DUPL)
{
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)
{
Expand All @@ -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--;
}
Expand Down

0 comments on commit 3b7a652

Please sign in to comment.