svc: Move ResetType enum to the kernel event header

This commit is contained in:
Lioncash
2016-03-12 21:47:41 -05:00
parent 31797a242f
commit 856a1d0386
10 changed files with 17 additions and 16 deletions

View File

@ -434,8 +434,8 @@ void Init() {
cpu_percent = 0;
// TODO(bunnei): Check if these are created in Initialize or on APT process startup.
notification_event = Kernel::Event::Create(ResetType::OneShot, "APT_U:Notification");
parameter_event = Kernel::Event::Create(ResetType::OneShot, "APT_U:Start");
notification_event = Kernel::Event::Create(Kernel::ResetType::OneShot, "APT_U:Notification");
parameter_event = Kernel::Event::Create(Kernel::ResetType::OneShot, "APT_U:Start");
next_parameter.signal = static_cast<u32>(SignalType::AppJustStarted);
next_parameter.destination_id = 0x300;