From 799db65d26bbee7ea3c368ef9ea9c7f533cf92a7 Mon Sep 17 00:00:00 2001 From: San Jacobs Date: Thu, 28 Jul 2022 01:11:52 +0200 Subject: Fixed: lunch() broken due to bad timesplit comment --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index a9d1543..cc9cd43 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -16,7 +16,6 @@ You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/ */ -// TODO: Make system that determines the price of each timeblock in workday // TODO: Add ruleset selector (That only allows you to pick the advert ruleset at first) #include @@ -87,7 +86,8 @@ int main(int argc, char* argv[]) for(int i=0; itotal_timeblocks; i++) { std::cout << "Timeblock " << i << ": " << timeprint(current_workday->blocks[i]) - << ". Total hours: " << current_workday->blocks[i].hourcount() << std::endl; + << ". Total hours: " << current_workday->blocks[i].hourcount() + << "\t Valuefactor: " << current_workday->blocks[i].valuefactor << std::endl; } previous_wrap = wraptime; } -- cgit v1.2.1