svc: Make ResetType an enum class

This commit is contained in:
Lioncash 2016-03-12 15:06:31 -05:00
parent 5858a3a148
commit 219ecd2ee7
11 changed files with 23 additions and 24 deletions

View file

@ -35,7 +35,7 @@ void Event::Acquire() {
ASSERT_MSG(!ShouldWait(), "object unavailable!");
// Release the event if it's not sticky...
if (reset_type != RESETTYPE_STICKY)
if (reset_type != ResetType::Sticky)
signaled = false;
}