summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormetaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com>2023-11-16 16:09:49 -0600
committermetaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com>2023-11-16 16:09:49 -0600
commit511e5abbfe4af714c555e977d64ebd99e4e113f9 (patch)
treed1bc1bf2635900793233473314132b2fb9fb703d
parent98eff8059fef38103139668ccdf64b7b2b6b7bf3 (diff)
downloadPSE-511e5abbfe4af714c555e977d64ebd99e4e113f9.tar.gz
fixed the money edit bug.
-rw-r--r--UserOptions.cpp3
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)
{