mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 11:35:46 +00:00
core/file_sys: fix alignment of BuildId
This commit is contained in:
parent
e37e3d3634
commit
518317b717
2 changed files with 3 additions and 3 deletions
|
@ -217,7 +217,7 @@ void IPSwitchCompiler::Parse() {
|
|||
break;
|
||||
} else if (StartsWith(line, "@nsobid-")) {
|
||||
// NSO Build ID Specifier
|
||||
const auto raw_build_id = fmt::format("{:0>64}", line.substr(8));
|
||||
const auto raw_build_id = fmt::format("{:0<64}", line.substr(8));
|
||||
nso_build_id = Common::HexStringToArray<0x20>(raw_build_id);
|
||||
} else if (StartsWith(line, "#")) {
|
||||
// Mandatory Comment
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue