Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix hexadecimal parsing in parseWindow()
Due to invalid usage of std::stoi() hexadecimal values prefixed with "0x" were always parsed as integers with value of 0. This fix uses base 0 instead of default base 10, leading to automatic base detection.
- Loading branch information