mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
c0725db97a
commit
53357b9efc
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue