[XAM] Assert struct sizes and misc struct adjustments

This commit is contained in:
Adrian
2025-05-05 17:57:45 +01:00
committed by Radosław Gliński
parent 8cf15a8d54
commit 6b055f1f74
12 changed files with 52 additions and 34 deletions

View File

@@ -25,11 +25,13 @@ struct XUSER_CONTEXT {
xe::be<uint32_t> context_id;
xe::be<uint32_t> value;
};
static_assert_size(XUSER_CONTEXT, 0x8);
struct XUSER_PROPERTY {
xe::be<uint32_t> property_id;
X_USER_DATA data;
};
static_assert_size(XUSER_PROPERTY, 0x18);
class Property : public UserData {
public: