summaryrefslogtreecommitdiffstats
path: root/src/engine/EventBuffer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/EventBuffer.hpp')
-rw-r--r--src/engine/EventBuffer.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/EventBuffer.hpp b/src/engine/EventBuffer.hpp
index 7c2d9d20..9ff91cc7 100644
--- a/src/engine/EventBuffer.hpp
+++ b/src/engine/EventBuffer.hpp
@@ -44,8 +44,8 @@ public:
bool merge(const EventBuffer& a, const EventBuffer& b);
- bool increment() const;
- bool is_valid() const;
+ bool increment() const { return _buf->increment(); }
+ bool is_valid() const { return _buf->is_valid(); }
inline uint32_t latest_frames() const { return _buf->latest_frames(); }
inline uint32_t latest_subframes() const { return _buf->latest_subframes(); }