mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
mark all local functions as static
This commit is contained in:
parent
3ff1c538ee
commit
22e1aa5bb4
93 changed files with 260 additions and 251 deletions
|
@ -11,13 +11,13 @@
|
|||
#include "VideoCommon/VideoCommon.h"
|
||||
#include "VideoCommon/XFMemory.h"
|
||||
|
||||
void XFMemWritten(u32 transferSize, u32 baseAddress)
|
||||
static void XFMemWritten(u32 transferSize, u32 baseAddress)
|
||||
{
|
||||
VertexManager::Flush();
|
||||
VertexShaderManager::InvalidateXFRange(baseAddress, baseAddress + transferSize);
|
||||
}
|
||||
|
||||
void XFRegWritten(int transferSize, u32 baseAddress, u32 *pData)
|
||||
static void XFRegWritten(int transferSize, u32 baseAddress, u32 *pData)
|
||||
{
|
||||
u32 address = baseAddress;
|
||||
u32 dataIndex = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue