FifoPlayer: Make functions static

This commit is contained in:
Dr. Dystopia
2025-04-28 20:09:14 +02:00
parent 8ee64a84c7
commit c32ca0696e
3 changed files with 5 additions and 5 deletions

View File

@ -79,7 +79,7 @@ FifoDataFile::FifoDataFile() = default;
FifoDataFile::~FifoDataFile() = default;
bool FifoDataFile::ShouldGenerateFakeVIUpdates() const
bool FifoDataFile::ShouldGenerateFakeVIUpdates()
{
return true;
}

View File

@ -62,7 +62,7 @@ public:
void SetIsWii(bool isWii);
bool GetIsWii() const;
bool HasBrokenEFBCopies() const;
bool ShouldGenerateFakeVIUpdates() const;
static bool ShouldGenerateFakeVIUpdates();
u32* GetBPMem() { return m_BPMem.data(); }
u32* GetCPMem() { return m_CPMem.data(); }
@ -85,7 +85,7 @@ private:
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);
bool GetFlag(u32 flag) const;

View File

@ -173,8 +173,8 @@ private:
void LoadXFReg(u16 reg, u32 value);
void LoadXFMem16(u16 address, const u32* data);
bool ShouldLoadBP(u8 address);
bool ShouldLoadXF(u8 address);
static bool ShouldLoadBP(u8 address);
static bool ShouldLoadXF(u8 address);
bool IsIdleSet() const;
bool IsHighWatermarkSet() const;