static and extern do not mix.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2360 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2009-12-19 11:27:17 +00:00
parent c0725db97a
commit 53357b9efc
1 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,6 @@
#pragma once #pragma once
static __aligned16 nVifStruct nVif[2]; static __aligned16 nVifStruct nVif[2];
static _f void _nVifUnpack(int idx, u8 *data, u32 size);
void initNewVif(int idx) { void initNewVif(int idx) {
nVif[idx].idx = idx; nVif[idx].idx = idx;
@ -214,7 +213,7 @@ static const __aligned16 Fnptr_VifUnpackLoop UnpackLoopTable[2][2][2] =
}; };
static _f void _nVifUnpack(int idx, u8 *data, u32 size) { _f void _nVifUnpack(int idx, u8 *data, u32 size) {
if (useOldUnpack) { if (useOldUnpack) {
if (!idx) VIFunpack<0>((u32*)data, &vif0.tag, size>>2); if (!idx) VIFunpack<0>((u32*)data, &vif0.tag, size>>2);