mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 22:07:55 -05:00
svc: Make ResetType an enum class
This commit is contained in:
@ -43,7 +43,7 @@ bool Timer::ShouldWait() {
|
||||
void Timer::Acquire() {
|
||||
ASSERT_MSG( !ShouldWait(), "object unavailable!");
|
||||
|
||||
if (reset_type == RESETTYPE_ONESHOT)
|
||||
if (reset_type == ResetType::OneShot)
|
||||
signaled = false;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user