mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2025-04-19 19:14:47 +00:00
Merge commit 'cd40133aa4' into torzu-merging
This commit is contained in:
commit
6d8208478e
1 changed files with 2 additions and 2 deletions
|
@ -932,14 +932,14 @@ Result ISystemSettingsServer::SetPrimaryAlbumStorage(PrimaryAlbumStorage primary
|
|||
Result ISystemSettingsServer::GetBatteryLot(Out<BatteryLot> out_battery_lot) {
|
||||
LOG_INFO(Service_SET, "called");
|
||||
|
||||
*out_battery_lot = {"SUYU0EMULATOR14022024"};
|
||||
*out_battery_lot = BatteryLot{"SUYU0EMULATOR14022024"};
|
||||
R_SUCCEED();
|
||||
}
|
||||
|
||||
Result ISystemSettingsServer::GetSerialNumber(Out<SerialNumber> out_console_serial) {
|
||||
LOG_INFO(Service_SET, "called");
|
||||
|
||||
*out_console_serial = SerialNumber("SUY10000000001");
|
||||
*out_console_serial = SerialNumber{"SUY10000000001"};
|
||||
R_SUCCEED();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue