Browse Source

remove value initialization

pull/3761/head
maufeat 2 months ago
committed by PavelBARABANOV
parent
commit
b01c5be2c3
  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) /// This is nn::settings::system::AccountUserSettings (stubbed)
struct AccountUserSettings { struct AccountUserSettings {
std::array<u8, 0x40> data{};
std::array<u8, 0x40> data;
}; };
static_assert(sizeof(AccountUserSettings) == 0x40, static_assert(sizeof(AccountUserSettings) == 0x40,
"AccountUserSettings is an invalid size"); "AccountUserSettings is an invalid size");

Loading…
Cancel
Save