Rounding minutes seems to be fixed ...

This commit is contained in:
2023-05-14 16:15:37 +02:00
parent 2f8c8cab4c
commit 1142efaec2
2 changed files with 3 additions and 3 deletions

View File

@@ -151,7 +151,7 @@ std::string Calculator::GetDurationFromCost(Configuration* cfg,
while(true)
{
if(money_left <= 0) break;
if((int)money_left <= 0) break;
// Check year period
bool isYearPeriodActive = false;