From 7a4f200b9da10db87796bb0db32d2228371e0bfc Mon Sep 17 00:00:00 2001 From: Yggdrasil75 Date: Tue, 18 Nov 2025 08:29:25 -0500 Subject: [PATCH] minor changes to fix logging --- util/output/frame.hpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/util/output/frame.hpp b/util/output/frame.hpp index 7b2f6ae..3406830 100644 --- a/util/output/frame.hpp +++ b/util/output/frame.hpp @@ -128,10 +128,7 @@ public: for (uint16_t i = 0; i < 256; i++) { dict[i] = i; } - //std::vector> repeats = getRepeats(); - //repeats = sortvecs(repeats); - std::vector compressed; uint16_t nextDict = 256; uint16_t cpos = 0; @@ -153,13 +150,8 @@ public: _compressedData.push_back(0); } - ratio = compressed.size() / _data.size(); + ratio = _compressedData.size() / _data.size(); sourceSize = _data.size(); - - // _compressedData = std::move(compressed); - // _compressedData.shrink_to_fit(); - - // Clear uncompressed data _data.clear(); _data.shrink_to_fit();