svc: Make ResetType an enum class

This commit is contained in:
Lioncash
2016-03-12 15:06:31 -05:00
parent 2f0a61debf
commit 12e92f17de
11 changed files with 23 additions and 24 deletions

View File

@ -138,7 +138,7 @@ const Interface::FunctionInfo FunctionTable[] = {
// Interface class
Interface::Interface() {
handle_event = Kernel::Event::Create(RESETTYPE_ONESHOT, "NWM_UDS::handle_event");
handle_event = Kernel::Event::Create(ResetType::OneShot, "NWM_UDS::handle_event");
Register(FunctionTable);
}