summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/nvdrv/interface.h')
-rw-r--r--src/core/hle/service/nvdrv/interface.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/hle/service/nvdrv/interface.h b/src/core/hle/service/nvdrv/interface.h
index 5a1e4baa7..a27252038 100644
--- a/src/core/hle/service/nvdrv/interface.h
+++ b/src/core/hle/service/nvdrv/interface.h
@@ -5,10 +5,13 @@
#pragma once
#include <memory>
-#include "core/hle/kernel/event.h"
#include "core/hle/service/nvdrv/nvdrv.h"
#include "core/hle/service/service.h"
+namespace Kernel {
+class WritableEvent;
+}
+
namespace Service::Nvidia {
class NVDRV final : public ServiceFramework<NVDRV> {
@@ -31,7 +34,7 @@ private:
u64 pid{};
- Kernel::SharedPtr<Kernel::Event> query_event;
+ Kernel::SharedPtr<Kernel::WritableEvent> query_event;
};
} // namespace Service::Nvidia