mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-27 12:45:50 +00:00
StreamBuffer: Correct function casing
This commit is contained in:
parent
1eea95a5be
commit
ec71452706
2 changed files with 9 additions and 9 deletions
|
@ -61,7 +61,7 @@ protected:
|
|||
|
||||
private:
|
||||
static constexpr int SYNC_POINTS = 16;
|
||||
int SLOT(u32 x) const { return x >> m_bit_per_slot; }
|
||||
int Slot(u32 x) const { return x >> m_bit_per_slot; }
|
||||
const int m_bit_per_slot;
|
||||
|
||||
std::array<GLsync, SYNC_POINTS> m_fences{};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue