summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/ring_lifo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/hid/ring_lifo.h')
-rw-r--r--src/core/hle/service/hid/ring_lifo.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/ring_lifo.h b/src/core/hle/service/hid/ring_lifo.h
index 382350a2d..6209ed0d1 100644
--- a/src/core/hle/service/hid/ring_lifo.h
+++ b/src/core/hle/service/hid/ring_lifo.h
@@ -4,6 +4,8 @@
#pragma once
+#include <array>
+
#include "common/common_types.h"
#include "common/swap.h"
@@ -29,10 +31,10 @@ struct Lifo {
}
const AtomicStorage<State>& ReadPreviousEntry() const {
- return entries[GetPreviuousEntryIndex()];
+ return entries[GetPreviousEntryIndex()];
}
- std::size_t GetPreviuousEntryIndex() const {
+ std::size_t GetPreviousEntryIndex() const {
return (buffer_tail + total_buffer_count - 1) % total_buffer_count;
}