diff options
author | metaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com> | 2023-11-16 16:09:49 -0600 |
---|---|---|
committer | metaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com> | 2023-11-16 16:09:49 -0600 |
commit | 511e5abbfe4af714c555e977d64ebd99e4e113f9 (patch) | |
tree | d1bc1bf2635900793233473314132b2fb9fb703d | |
parent | 98eff8059fef38103139668ccdf64b7b2b6b7bf3 (diff) | |
download | PSE-511e5abbfe4af714c555e977d64ebd99e4e113f9.tar.gz |
fixed the money edit bug.
-rw-r--r-- | UserOptions.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/UserOptions.cpp b/UserOptions.cpp index b9881ac..c86beb5 100644 --- a/UserOptions.cpp +++ b/UserOptions.cpp @@ -75,7 +75,8 @@ void SavEdit::cashModify() { std::cout << "input (numbers only): " << std::endl; - std::cin >> s; + // This should fix the hex->deci issue. + std::cin >> std::hex >> s; if(atoi(s.c_str()) <= 999999) { |