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();