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.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/ring_lifo.h b/src/core/hle/service/hid/ring_lifo.h
index f0e0bab7f..44c20d967 100644
--- a/src/core/hle/service/hid/ring_lifo.h
+++ b/src/core/hle/service/hid/ring_lifo.h
@@ -9,7 +9,6 @@
#include "common/common_types.h"
namespace Service::HID {
-constexpr std::size_t max_buffer_size = 17;
template <typename State>
struct AtomicStorage {
@@ -17,7 +16,7 @@ struct AtomicStorage {
State state;
};
-template <typename State>
+template <typename State, std::size_t max_buffer_size>
struct Lifo {
s64 timestamp{};
s64 total_buffer_count = static_cast<s64>(max_buffer_size);