mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 22:58:19 -05:00
svc: Make ResetType an enum class
This commit is contained in:
@ -99,8 +99,8 @@ void Init() {
|
||||
transfer_shared_memory = nullptr;
|
||||
|
||||
// Create event handle(s)
|
||||
handle_event = Event::Create(RESETTYPE_ONESHOT, "IR:HandleEvent");
|
||||
conn_status_event = Event::Create(RESETTYPE_ONESHOT, "IR:ConnectionStatusEvent");
|
||||
handle_event = Event::Create(ResetType::OneShot, "IR:HandleEvent");
|
||||
conn_status_event = Event::Create(ResetType::OneShot, "IR:ConnectionStatusEvent");
|
||||
}
|
||||
|
||||
void Shutdown() {
|
||||
|
Reference in New Issue
Block a user