summaryrefslogtreecommitdiff
path: root/src/core/hardware_interrupt_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hardware_interrupt_manager.h')
-rw-r--r--src/core/hardware_interrupt_manager.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hardware_interrupt_manager.h b/src/core/hardware_interrupt_manager.h
index 494db883a..5fa306ae0 100644
--- a/src/core/hardware_interrupt_manager.h
+++ b/src/core/hardware_interrupt_manager.h
@@ -4,6 +4,8 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <memory>
8
7#include "common/common_types.h" 9#include "common/common_types.h"
8 10
9namespace Core { 11namespace Core {
@@ -25,7 +27,7 @@ public:
25 27
26private: 28private:
27 Core::System& system; 29 Core::System& system;
28 Core::Timing::EventType* gpu_interrupt_event{}; 30 std::shared_ptr<Core::Timing::EventType> gpu_interrupt_event;
29}; 31};
30 32
31} // namespace Core::Hardware 33} // namespace Core::Hardware