Make some variables static (should probably adjust for coding style too, but I'm not the one who merged code with bad style...)
This commit is contained in:
parent
1ff86a4716
commit
4134a0ad54
|
@ -23,11 +23,11 @@ u8 texMtxIdx[8];
|
||||||
|
|
||||||
|
|
||||||
// Internal vars
|
// Internal vars
|
||||||
SetupUnit vtxUnit;
|
static SetupUnit vtxUnit;
|
||||||
VAT myVat;
|
static VAT myVat;
|
||||||
u8 * bufferPos;
|
static u8 * bufferPos;
|
||||||
TVtxDesc vertexDesc;
|
static TVtxDesc vertexDesc;
|
||||||
PortableVertexDeclaration vertexDecl;
|
static PortableVertexDeclaration vertexDecl;
|
||||||
|
|
||||||
// Gets the pointer to the current buffer position
|
// Gets the pointer to the current buffer position
|
||||||
void LOADERDECL SetVertexBufferPosition()
|
void LOADERDECL SetVertexBufferPosition()
|
||||||
|
|
Loading…
Reference in New Issue