From 91c12e0ab9549a80bb642c9c1f22a2f0b0813c1e Mon Sep 17 00:00:00 2001 From: Moritz Martinius Date: Sun, 24 Sep 2023 18:20:34 +0200 Subject: [PATCH] Some cleanup in Bitmap.cpp --- src/graphics/Bitmap.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/graphics/Bitmap.cpp b/src/graphics/Bitmap.cpp index f646089..b197947 100644 --- a/src/graphics/Bitmap.cpp +++ b/src/graphics/Bitmap.cpp @@ -76,8 +76,6 @@ std::optional> Bitmap::getCol(uint16_t col) { auto it = std::next(mPixels.begin(), col); for (auto& colElement : colPixels) { - int offset = std::distance(mPixels.begin(), it); - //spdlog::debug("Distance {}: {}", offset, *it); colElement = *it; std::advance(it, mWidth); }