mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 09:59:32 -06:00
Merge pull request #13603 from tygyh/FifoPlayer-Make-functions-static
FifoPlayer: Make functions static
This commit is contained in:
@ -79,7 +79,7 @@ FifoDataFile::FifoDataFile() = default;
|
|||||||
|
|
||||||
FifoDataFile::~FifoDataFile() = default;
|
FifoDataFile::~FifoDataFile() = default;
|
||||||
|
|
||||||
bool FifoDataFile::ShouldGenerateFakeVIUpdates() const
|
bool FifoDataFile::ShouldGenerateFakeVIUpdates()
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -62,7 +62,7 @@ public:
|
|||||||
void SetIsWii(bool isWii);
|
void SetIsWii(bool isWii);
|
||||||
bool GetIsWii() const;
|
bool GetIsWii() const;
|
||||||
bool HasBrokenEFBCopies() const;
|
bool HasBrokenEFBCopies() const;
|
||||||
bool ShouldGenerateFakeVIUpdates() const;
|
static bool ShouldGenerateFakeVIUpdates();
|
||||||
|
|
||||||
u32* GetBPMem() { return m_BPMem.data(); }
|
u32* GetBPMem() { return m_BPMem.data(); }
|
||||||
u32* GetCPMem() { return m_CPMem.data(); }
|
u32* GetCPMem() { return m_CPMem.data(); }
|
||||||
@ -85,7 +85,7 @@ private:
|
|||||||
FLAG_IS_WII = 1
|
FLAG_IS_WII = 1
|
||||||
};
|
};
|
||||||
|
|
||||||
void PadFile(size_t numBytes, File::IOFile& file);
|
static void PadFile(size_t numBytes, File::IOFile& file);
|
||||||
|
|
||||||
void SetFlag(u32 flag, bool set);
|
void SetFlag(u32 flag, bool set);
|
||||||
bool GetFlag(u32 flag) const;
|
bool GetFlag(u32 flag) const;
|
||||||
|
@ -173,8 +173,8 @@ private:
|
|||||||
void LoadXFReg(u16 reg, u32 value);
|
void LoadXFReg(u16 reg, u32 value);
|
||||||
void LoadXFMem16(u16 address, const u32* data);
|
void LoadXFMem16(u16 address, const u32* data);
|
||||||
|
|
||||||
bool ShouldLoadBP(u8 address);
|
static bool ShouldLoadBP(u8 address);
|
||||||
bool ShouldLoadXF(u8 address);
|
static bool ShouldLoadXF(u8 address);
|
||||||
|
|
||||||
bool IsIdleSet() const;
|
bool IsIdleSet() const;
|
||||||
bool IsHighWatermarkSet() const;
|
bool IsHighWatermarkSet() const;
|
||||||
|
Reference in New Issue
Block a user