implement JSD1

This commit is contained in:
Martin Michelsen
2022-05-08 19:25:18 -07:00
parent e1e6ca1517
commit cedb0c648e
9 changed files with 615 additions and 409 deletions
+6
View File
@@ -822,6 +822,12 @@ struct C_Login_BB_93 {
ClientConfigBB cfg;
ptext<char, 0x28> version_string;
ClientConfigFields() : version_string() { }
ClientConfigFields(const ClientConfigFields& other)
: version_string(other.version_string) { }
inline ClientConfigFields& operator=(const ClientConfigFields& other) {
this->version_string = other.version_string;
return *this;
}
} client_config;
};