diff options
-rwxr-xr-x | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index f02a046..ce5c8c3 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -228,7 +228,7 @@ done: day_price = dayrate + (day_length * hourly_rate); } else if((each_day.call.hours < 6 || each_day.call.hours >= 10) && - (each_day.wrap.hours >= 22 || each_day.wrap.hours <= 10)){ + (each_day.wrap.hours > 22 || each_day.wrap.hours <= 10)){ if(day_price < dayrate){ day_price = dayrate; |