diff options
| author | 2019-01-04 20:47:20 +1100 | |
|---|---|---|
| committer | 2019-01-04 20:47:20 +1100 | |
| commit | 4f41fd84ffb09e648e3c5893a5cdc4e528480f98 (patch) | |
| tree | 933257f9b1a9d8122772b4e7bc2c5535e1e5dd8b /src/core/hle/kernel/timer.cpp | |
| parent | Merge pull request #1975 from lioncash/vi (diff) | |
| download | yuzu-4f41fd84ffb09e648e3c5893a5cdc4e528480f98.tar.gz yuzu-4f41fd84ffb09e648e3c5893a5cdc4e528480f98.tar.xz yuzu-4f41fd84ffb09e648e3c5893a5cdc4e528480f98.zip | |
Removed pulse event type
Pulse is considered a hack and nothing should be using it. We should completely remove it
Diffstat (limited to 'src/core/hle/kernel/timer.cpp')
| -rw-r--r-- | src/core/hle/kernel/timer.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/kernel/timer.cpp b/src/core/hle/kernel/timer.cpp index 6957b16e0..2c4f50e2b 100644 --- a/src/core/hle/kernel/timer.cpp +++ b/src/core/hle/kernel/timer.cpp | |||
| @@ -68,9 +68,6 @@ void Timer::Clear() { | |||
| 68 | 68 | ||
| 69 | void Timer::WakeupAllWaitingThreads() { | 69 | void Timer::WakeupAllWaitingThreads() { |
| 70 | WaitObject::WakeupAllWaitingThreads(); | 70 | WaitObject::WakeupAllWaitingThreads(); |
| 71 | |||
| 72 | if (reset_type == ResetType::Pulse) | ||
| 73 | signaled = false; | ||
| 74 | } | 71 | } |
| 75 | 72 | ||
| 76 | void Timer::Signal(int cycles_late) { | 73 | void Timer::Signal(int cycles_late) { |