mirror of
https://notabug.org/litucks/torzu.git
synced 2026-05-25 06:42:25 +00:00
Removed unnessecary sizeof(u8)
This commit is contained in:
parent
923464fb7b
commit
22133fd606
1 changed files with 1 additions and 1 deletions
|
|
@ -106,7 +106,7 @@ std::unique_ptr<Process> CreateApplicationProcess(std::vector<u8>& out_control,
|
|||
out_control = nacp.GetRawBytes();
|
||||
} else {
|
||||
out_control.resize(sizeof(FileSys::RawNACP));
|
||||
memset(out_control.data(), 0, sizeof(u8) * out_control.size());
|
||||
memset(out_control.data(), 0, out_control.size());
|
||||
}
|
||||
|
||||
auto& storage = system.GetContentProviderUnion();
|
||||
|
|
|
|||
Loading…
Reference in a new issue