From 511e5abbfe4af714c555e977d64ebd99e4e113f9 Mon Sep 17 00:00:00 2001 From: metaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com> Date: Thu, 16 Nov 2023 16:09:49 -0600 Subject: fixed the money edit bug. --- UserOptions.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) { -- cgit v1.2.3