Explorar el Código

vi: Use new CoreTiming::EventType

bunnei hace 8 años
padre
commit
7e0ff43da0
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      src/core/hle/service/vi/vi.h

+ 5 - 1
src/core/hle/service/vi/vi.h

@@ -9,6 +9,10 @@
 #include "core/hle/kernel/event.h"
 #include "core/hle/service/service.h"
 
+namespace CoreTiming {
+struct EventType;
+}
+
 namespace Service {
 namespace VI {
 
@@ -122,7 +126,7 @@ private:
     u32 next_buffer_queue_id = 1;
 
     /// CoreTiming event that handles screen composition.
-    int composition_event;
+    CoreTiming::EventType* composition_event;
 };
 
 class IApplicationDisplayService final : public ServiceFramework<IApplicationDisplayService> {