summaryrefslogtreecommitdiff
path: root/xsc.cpp
diff options
context:
space:
mode:
authorjstmaxlol <maxwasmailed@proton.me>2025-05-22 19:49:30 +0200
committerjstmaxlol <maxwasmailed@proton.me>2025-05-22 19:49:30 +0200
commit4b8e1d6bdf6560145ac473855fa1844d09fbcf96 (patch)
tree1e61097f6c0ab2a891837ae1e4e35c107c0c0791 /xsc.cpp
parentb7d5a7446245afe1c6b646cd59c25a418c49a136 (diff)
yeah ok basically i fixed it by not being a dumdum (sorry again i guess like wtf am i doing today fr)
Diffstat (limited to 'xsc.cpp')
-rw-r--r--xsc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xsc.cpp b/xsc.cpp
index 37d279f..847ecc4 100644
--- a/xsc.cpp
+++ b/xsc.cpp
@@ -79,7 +79,7 @@ int calculate(double& n1, char& op, double& n2) {
case '-':
std::cout << n1 - n2;
return 0;
- case '*':
+ case 'x':
std::cout << n1 * n2;
return 0;
case '/':