ips_layer: Delimit parsed hex value string
Delimits the hex value string on spaces, slashes, carriage returns or newlines, allowing for comments to be added in-line.
This commit is contained in:
parent
72bf844110
commit
a44da3c14d
1 changed files with 2 additions and 1 deletions
|
@ -287,7 +287,8 @@ void IPSwitchCompiler::Parse() {
|
|||
std::copy(value.begin(), value.end(), std::back_inserter(replace));
|
||||
} else {
|
||||
// hex replacement
|
||||
const auto value = patch_line.substr(9);
|
||||
const auto value =
|
||||
patch_line.substr(9, patch_line.find_first_of(" /\r\n", 9) - 9);
|
||||
replace = Common::HexStringToVector(value, is_little_endian);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue