kernel: events: Remove ResetType::Automatic.

- This does not actually seem to exist in the real kernel - games reset these automatically.

# Conflicts:
#	src/core/hle/service/am/applets/applets.cpp
#	src/core/hle/service/filesystem/fsp_srv.cpp
This commit is contained in:
bunnei
2019-11-03 04:10:12 -05:00
parent 28bb248db6
commit b0ab803ce8
25 changed files with 48 additions and 109 deletions

View File

@ -27,10 +27,6 @@ public:
return name;
}
ResetType GetResetType() const {
return reset_type;
}
static constexpr HandleType HANDLE_TYPE = HandleType::ReadableEvent;
HandleType GetHandleType() const override {
return HANDLE_TYPE;
@ -55,7 +51,6 @@ private:
void Signal();
ResetType reset_type;
bool signaled{};
std::string name; ///< Name of event (optional)