From 779ab90b8f6a4605676ad69b79145b1c303400d3 Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Mon, 9 Jan 2023 17:30:25 -0800 Subject: [PATCH] omega symbol --- src/bank.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bank.cpp b/src/bank.cpp index 0ea5274..19069d9 100644 --- a/src/bank.cpp +++ b/src/bank.cpp @@ -191,7 +191,7 @@ BankResponse Bank::SetBal(const std::string &name, int64_t amount) noexcept amount -= u.balance; u.balance += amount; #if MAX_LOG_SIZE > 0 - u.log.AddTrans("$", (amount > 0), amount, time(NULL)); + u.log.AddTrans("Ω", (amount > 0), amount, time(NULL)); #endif })) { @@ -214,7 +214,7 @@ BankResponse Bank::ImpactBal(const std::string &name, int64_t amount) noexcept amount += (u.balance < (amount * -1)) * (amount + u.balance); bal = u.balance += amount; #if MAX_LOG_SIZE > 0 - u.log.AddTrans("$", (amount > 0), amount, time(NULL)); + u.log.AddTrans("Ω", (amount > 0), amount, time(NULL)); #endif })) {