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/object.h | |
| 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/object.h')
| -rw-r--r-- | src/core/hle/kernel/object.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/kernel/object.h b/src/core/hle/kernel/object.h index f1606a204..1541b6e3c 100644 --- a/src/core/hle/kernel/object.h +++ b/src/core/hle/kernel/object.h | |||
| @@ -36,7 +36,6 @@ enum class HandleType : u32 { | |||
| 36 | enum class ResetType { | 36 | enum class ResetType { |
| 37 | OneShot, ///< Reset automatically on object acquisition | 37 | OneShot, ///< Reset automatically on object acquisition |
| 38 | Sticky, ///< Never reset automatically | 38 | Sticky, ///< Never reset automatically |
| 39 | Pulse, ///< Reset automatically on wakeup | ||
| 40 | }; | 39 | }; |
| 41 | 40 | ||
| 42 | class Object : NonCopyable { | 41 | class Object : NonCopyable { |