From 6ea0d7ac1245896057fb4c3a7f5f5b900d501ef8 Mon Sep 17 00:00:00 2001 From: ALEZ-DEV Date: Wed, 6 Nov 2024 19:51:18 +0100 Subject: [PATCH] some cleaning --- babylonia_terminal_launcher/lib/models/game.dart | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/babylonia_terminal_launcher/lib/models/game.dart b/babylonia_terminal_launcher/lib/models/game.dart index 7af9d6b..ab34b61 100644 --- a/babylonia_terminal_launcher/lib/models/game.dart +++ b/babylonia_terminal_launcher/lib/models/game.dart @@ -47,12 +47,9 @@ class Game with ChangeNotifier { } else { currentSpeed = currentProgress - lastProgress; lastProgress = currentProgress; - print('currentProgress -> $currentProgress'); - print('lastProgress -> $lastProgress'); - print('currentSpeed -> ${currentSpeed.toInt() / 1048576} MiB/s'); } - waitUntil = DateTime.now().add(Duration(seconds: 1)); + waitUntil = DateTime.now().add(const Duration(seconds: 1)); } notifyListeners();