move core subsystem ID

This commit is contained in:
Robin Müller 2023-01-26 16:20:46 +01:00
parent 7d1bf3f9ba
commit 694b885c0f
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
2 changed files with 1 additions and 1 deletions

View File

@ -35,6 +35,7 @@ enum : uint8_t {
SYRLINKS = 137, SYRLINKS = 137,
SCEX_HANDLER = 138, SCEX_HANDLER = 138,
CONFIGHANDLER = 139, CONFIGHANDLER = 139,
CORE = 140,
COMMON_SUBSYSTEM_ID_END COMMON_SUBSYSTEM_ID_END
}; };

View File

@ -13,7 +13,6 @@
namespace SUBSYSTEM_ID { namespace SUBSYSTEM_ID {
enum : uint8_t { enum : uint8_t {
SUBSYSTEM_ID_START = COMMON_SUBSYSTEM_ID_END, SUBSYSTEM_ID_START = COMMON_SUBSYSTEM_ID_END,
CORE = 137,
}; };
} }