diff options
| author | comex <comexk@gmail.com> | 2014-10-14 01:16:02 -0400 |
|---|---|---|
| committer | comex <comexk@gmail.com> | 2014-10-16 17:03:37 -0400 |
| commit | 4134a0ad54e5355a9fe53dfec00ad5e331858a00 (patch) | |
| tree | 62240b6104630e9e125ce5a48d6b09e601ab0ff0 /Source/Core/VideoCommon/BoundingBox.cpp | |
| parent | 1ff86a47165d885625b33677e6a0bde752a525fb (diff) | |
Make some variables static (should probably adjust for coding style too, but I'm not the one who merged code with bad style...)
Diffstat (limited to 'Source/Core/VideoCommon/BoundingBox.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/BoundingBox.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Core/VideoCommon/BoundingBox.cpp b/Source/Core/VideoCommon/BoundingBox.cpp index 6a4af2aca6..1c007677e0 100644 --- a/Source/Core/VideoCommon/BoundingBox.cpp +++ b/Source/Core/VideoCommon/BoundingBox.cpp @@ -23,11 +23,11 @@ u8 texMtxIdx[8]; // Internal vars -SetupUnit vtxUnit; -VAT myVat; -u8 * bufferPos; -TVtxDesc vertexDesc; -PortableVertexDeclaration vertexDecl; +static SetupUnit vtxUnit; +static VAT myVat; +static u8 * bufferPos; +static TVtxDesc vertexDesc; +static PortableVertexDeclaration vertexDecl; // Gets the pointer to the current buffer position void LOADERDECL SetVertexBufferPosition() |
