From 69fcf99ff4db01d788a7fa17906d260ebaf67b49 Mon Sep 17 00:00:00 2001 From: Ingo Ruhnke Date: Wed, 21 May 2008 20:21:32 +0000 Subject: [PATCH] Another debug cout disabled SVN-Revision: 5500 --- src/video/gl_renderer.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/video/gl_renderer.cpp b/src/video/gl_renderer.cpp index 6a4d60903..e182988d1 100644 --- a/src/video/gl_renderer.cpp +++ b/src/video/gl_renderer.cpp @@ -637,9 +637,10 @@ Renderer::apply_config() // Clear so that we get a clean black border without junk glClear(GL_COLOR_BUFFER_BIT); - std::cout << (w-nw)/2 << " " - << (h-nh)/2 << " " - << nw << "x" << nh << std::endl; + if (0) + std::cout << (w-nw)/2 << " " + << (h-nh)/2 << " " + << nw << "x" << nh << std::endl; glViewport(std::max(0, (w-nw)/2), std::max(0, (h-nh)/2), -- 2.11.0