Update audio.cpp

Remove header and add newline
This commit is contained in:
Derek "Turtle" Roe 2021-03-13 04:20:40 -06:00
parent 71db981ac1
commit de0522b67c
1 changed files with 1 additions and 6 deletions

View File

@ -1,8 +1,3 @@
// Project64 - A Nintendo 64 emulator
// http://www.pj64-emu.com/
// Copyright(C) 2001-2021 Project64
// Copyright(C) 2014 Bobby Smiles
// GNU/GPLv2 licensed: https://gnu.org/licenses/gpl-2.0.html
#include "stdafx.h"
#include <assert.h>
#include "audio.h"
@ -110,4 +105,4 @@ void adpcm_compute_residuals(int16_t* dst, const int16_t* src,
accu += book1[i] * l1 + book2[i] * l2 + rdot(i, book2, src);
dst[i] = clamp_s16(accu >> 11);
}
}
}