diff options
| -rw-r--r-- | src/core/hle/service/hid/ring_lifo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/hid/ring_lifo.h b/src/core/hle/service/hid/ring_lifo.h index 65eb7ea02..0816784e0 100644 --- a/src/core/hle/service/hid/ring_lifo.h +++ b/src/core/hle/service/hid/ring_lifo.h | |||
| @@ -32,15 +32,15 @@ struct Lifo { | |||
| 32 | } | 32 | } |
| 33 | 33 | ||
| 34 | std::size_t GetPreviousEntryIndex() const { | 34 | std::size_t GetPreviousEntryIndex() const { |
| 35 | return static_cast<size_t>((buffer_tail + total_buffer_count - 1) % total_buffer_count); | 35 | return static_cast<size_t>((buffer_tail + max_buffer_size - 1) % max_buffer_size); |
| 36 | } | 36 | } |
| 37 | 37 | ||
| 38 | std::size_t GetNextEntryIndex() const { | 38 | std::size_t GetNextEntryIndex() const { |
| 39 | return static_cast<size_t>((buffer_tail + 1) % total_buffer_count); | 39 | return static_cast<size_t>((buffer_tail + 1) % max_buffer_size); |
| 40 | } | 40 | } |
| 41 | 41 | ||
| 42 | void WriteNextEntry(const State& new_state) { | 42 | void WriteNextEntry(const State& new_state) { |
| 43 | if (buffer_count < total_buffer_count - 1) { | 43 | if (buffer_count < static_cast<s64>(max_buffer_size) - 1) { |
| 44 | buffer_count++; | 44 | buffer_count++; |
| 45 | } | 45 | } |
| 46 | buffer_tail = GetNextEntryIndex(); | 46 | buffer_tail = GetNextEntryIndex(); |