1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-07-07 15:54:14 -04:00

Bug fix: total worth CAN be negative!

This commit is contained in:
John Zaitseff 2011-07-15 19:08:43 +10:00
parent 04513c9d30
commit 6a55745d5d

View File

@ -1139,10 +1139,6 @@ double total_value (int num)
}
}
if (val < ROUNDING_AMOUNT) {
val = 0.0;
}
return val;
}