From 88995ab5f3d906c2e2771590408da9a8cfbd5966 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 3 May 2021 22:50:38 -0400 Subject: [PATCH] Remove debug message. --- src/window.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/window.cpp b/src/window.cpp index adc2be92..6f0b6f48 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -505,7 +505,6 @@ void Window::screenshotModules(const std::string& screenshotsDir, float zoom) { nvgluBindFramebuffer(fbw->getFramebuffer()); int width, height; nvgImageSize(vg, fbw->getImageHandle(), &width, &height); - DEBUG("fb size %d %d", width, height); uint8_t* pixels = new uint8_t[height * width * 4]; glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, pixels);