Browse Source

remove value initialization

feat/22.0.0
maufeat 3 days ago
parent
commit
e79ef317aa
  1. 2
      src/core/hle/service/set/settings_types.h

2
src/core/hle/service/set/settings_types.h

@ -411,7 +411,7 @@ static_assert(sizeof(AccountNotificationSettings) == 0x18,
/// This is nn::settings::system::AccountUserSettings (stubbed)
struct AccountUserSettings {
std::array<u8, 0x40> data{};
std::array<u8, 0x40> data;
};
static_assert(sizeof(AccountUserSettings) == 0x40,
"AccountUserSettings is an invalid size");

Loading…
Cancel
Save